 | ETradeException Constructor (Int32, String, Exception) |
Note: This is preliminary documentation provided only as a preview, and is subject to change. Please contact the author for pricing and licensing information.
Initializes a new instance of the ETradeException class.
Namespace: ETradeNetAssembly: ETradeNet.Core (in ETradeNet.Core.dll) Version: 1.0.5793.41163
Syntaxpublic ETradeException(
int responseCode,
string reasonPhrase,
Exception innerException
)
Public Sub New (
responseCode As Integer,
reasonPhrase As String,
innerException As Exception
)
public:
ETradeException(
int responseCode,
String^ reasonPhrase,
Exception^ innerException
)
new :
responseCode : int *
reasonPhrase : string *
innerException : Exception -> ETradeException
Parameters
- responseCode
- Type: SystemInt32
The status code of the response. - reasonPhrase
- Type: SystemString
The reason phrase sent together with the status code. - innerException
- Type: SystemException
The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
See Also