Add ADSync Test Project, ActiveDirectoryInterface

This commit is contained in:
Jonathan Jenne
2019-04-01 16:49:24 +02:00
parent 05f5e730e1
commit 7ebd07cf14
24 changed files with 850 additions and 7 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