Class FatalException
Implements
Inherited Members
Namespace: Innovt.Core.Exceptions
Assembly: Innovt.Core.dll
Syntax
[Serializable]
public class FatalException : BaseException, ISerializable
Constructors
| Edit this page View SourceFatalException(Exception)
Initializes a new instance of the FatalException class with a specified inner exception.
Declaration
public FatalException(Exception ex)
Parameters
Type | Name | Description |
---|---|---|
Exception | ex | The inner exception that is the cause of this exception. |
FatalException(SerializationInfo, StreamingContext)
Declaration
protected FatalException(SerializationInfo serializationInfo, StreamingContext streamingContext)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | serializationInfo | |
StreamingContext | streamingContext |
FatalException(string)
Initializes a new instance of the FatalException class with a specified error message.
Declaration
public FatalException(string message)
Parameters
Type | Name | Description |
---|---|---|
string | message | The error message that describes the reason for the exception. |
FatalException(string, Exception)
Initializes a new instance of the FatalException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Declaration
public FatalException(string message, Exception ex)
Parameters
Type | Name | Description |
---|---|---|
string | message | The error message that describes the reason for the exception. |
Exception | ex | The inner exception that is the cause of this exception. |