11-08-2023

This commit is contained in:
Jonathan Jenne
2023-08-11 09:45:34 +02:00
parent 3e41e5b469
commit 2579d7abdd
7 changed files with 74 additions and 38 deletions

View File

@@ -0,0 +1,12 @@
Namespace Sharepoint
Public Class SharepointException
Inherits ApplicationException
Public ReadOnly ErrorType As Constants.ErrorType
Public Sub New(pErrorType As Constants.ErrorType, pMessage As String)
MyBase.New(pMessage)
ErrorType = pErrorType
End Sub
End Class
End Namespace