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.Meridian
    Assembly:
   BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.111.0)
Syntaxpublic MeridianException(
	string message,
	Exception innerException
)
Public Sub New ( 
	message As String,
	innerException As Exception
)
Parameters
- 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