Modules/Modules.Interfaces/Exceptions.vb
Jonathan Jenne b9f5b56455 jj: ZUGFeRD
2018-12-12 16:31:45 +01:00

14 lines
367 B
VB.net

Public Class Exceptions
Public Class ZUGFeRDExecption
Inherits ApplicationException
Public ReadOnly Property ErrorType() As ZUGFeRDInterface.ErrorType
Public Sub New(ErrorType As ZUGFeRDInterface.ErrorType, Message As String)
MyBase.New(Message)
_ErrorType = ErrorType
End Sub
End Class
End Class