| ursaException Constructor (ursaError, String, Exception) |
Initializes a new instance of the
ursaException class with a
ursaError value, error message, and inner exception.
Namespace:
SamoyedSoftware.ursa
Assembly:
SamoyedSoftware.ursa (in SamoyedSoftware.ursa.dll) Version: 0.2.0
Syntax public ursaException(
ursaError errorCode,
string message,
Exception innerException
)
Public Sub New (
errorCode As ursaError,
message As String,
innerException As Exception
)
public:
ursaException(
ursaError^ errorCode,
String^ message,
Exception^ innerException
)
new :
errorCode : ursaError *
message : string *
innerException : Exception -> ursaException
Parameters
- errorCode
- Type: SamoyedSoftware.ursaursaError
A ursaError value indicating the type of error. - message
- Type: SystemString
A string containing the error message. - innerException
- Type: SystemException
A Exception object representing the inner exception.
See Also