Class FastException
Base FAST exception.
Implements
Inherited Members
Namespace: OnixS.Fix.Fast
Assembly: OnixS.Fix.Engine.dll
Syntax
public class FastException : Exception, ISerializable
Constructors
FastException()
Constructor.
Declaration
public FastException()
FastException(FastErrorCode, string)
Constructor.
Declaration
public FastException(FastErrorCode code, string message)
Parameters
Type | Name | Description |
---|---|---|
FastErrorCode | code | |
string | message | Message that describes the error. |
FastException(FastErrorCode, string, Exception)
Constructor.
Declaration
public FastException(FastErrorCode code, string message, Exception cause)
Parameters
Type | Name | Description |
---|---|---|
FastErrorCode | code | |
string | message | Message that describes the error. |
Exception | cause | The originating cause of this error. |
Properties
Code
Returns the error code for this exception.
Declaration
public FastErrorCode Code { get; }
Property Value
Type | Description |
---|---|
FastErrorCode | The error code. |