Class FinSecurityException
A FinSecurityException may be thrown by many security related methods.
public class FinSecurityException : Exception, ISerializable
- Inheritance
-
FinSecurityException
- Implements
- Inherited Members
Remarks
If applicable the original exception is included as the inner exception.
Constructors
FinSecurityException(FinSecurityExceptionCode)
Create a new FinSecurityException.
public FinSecurityException(FinSecurityExceptionCode nCode)
Parameters
nCode
FinSecurityExceptionCodeThe exception code of the exception.
FinSecurityException(FinSecurityExceptionCode, string)
Create a new FinSecurityException with a descriptive message.
public FinSecurityException(FinSecurityExceptionCode nCode, string sMessage)
Parameters
nCode
FinSecurityExceptionCodeThe exception code of the exception.
sMessage
stringDescriptive message. This message is intended to be consumed by the developer and not the user.
FinSecurityException(FinSecurityExceptionCode, string, Exception)
Create a new FinSecurityException with a descriptive message and a reference to the original exception instance.
public FinSecurityException(FinSecurityExceptionCode nCode, string sMessage, Exception aInnerException)
Parameters
nCode
FinSecurityExceptionCodeThe exception code of the exception.
sMessage
stringDescriptive message. This message is intended to be consumed by the developer and not the user.
aInnerException
ExceptionThe original exception that caused the failure.
Properties
Code
Provides the detailed exception code of this FinSecurityException.
public FinSecurityExceptionCode Code { get; }