Jonathan Jenne 5cf8636e49 30-08-2023
2023-08-30 16:09:32 +02:00

13 lines
348 B
VB.net

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