MESException Constructor(String,MESExceptionType,Exception)
- Last UpdatedNov 06, 2025
- 1 minute read
Constructor which creates a specific MESException of the MESExceptionType passed in
'Declaration
Public Function New( _
ByVal message As String, _
ByVal exceptionType As MESExceptionType, _
ByVal innerException As Exception _
)
'Usage
Dim message As String
Dim exceptionType As MESExceptionType
Dim innerException As Exception
Dim instance As New MESException(message, exceptionType, innerException)
public MESException(
string message,
MESExceptionType exceptionType,
Exception innerException
)
Parameters
- message
- The Exception message
- exceptionType
- The MESExceptionType of the Exception
- innerException
- An inner Exception this Exception wraps