Constructs a CardServiceException with specified status word error code and inner exception object.

Namespace: BasicCard.GenericCards
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
public CardServiceException(
	string message,
	Exception innerException
)
Visual Basic
Public Sub New ( 
	message As String,
	innerException As Exception
)
Visual C++
public:
CardServiceException(
	String^ message, 
	Exception^ innerException
)
F#
new : 
        message : string * 
        innerException : Exception -> CardServiceException

Parameters

message
Type: System..::..String
Error message.
innerException
Type: System..::..Exception
Inner exception causing this exception.

See Also