jj: ZUGFeRD

This commit is contained in:
Jonathan Jenne
2018-12-12 16:31:45 +01:00
parent 15124113f7
commit b9f5b56455
41 changed files with 1984 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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