Jonathan Jenne 3e41e5b469 09-08-2023
2023-08-09 09:10:03 +02:00

13 lines
334 B
VB.net

Namespace slt
Public Class sltException
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