| MeridianException Constructor (String, Exception) |
Initializes a new instance of the
MeridianException class
with a specified error message and a reference to the inner exception
that is the cause of this exception.
Namespace: BlueCieloECM.InnoCielo.MeridianAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.19.0)
Syntaxpublic MeridianException(
string message,
Exception innerException
)
Public Sub New (
message As String,
innerException As Exception
)
public:
MeridianException(
String^ message,
Exception^ innerException
)
new :
message : string *
innerException : Exception -> MeridianExceptionParameters
- message
- Type: SystemString
A message that describes the error. - innerException
- Type: SystemException
The exception that is the cause of the current exception.
If the innerException parameter is not a null reference, the current exception is raised
in a catch block that handles the inner exception.
See Also