PPJoyException Constructor (String, Exception)

PPJoy

Initializes a new instance of the PPJoyException class.

Namespace:  PPJoy
Assembly:  PPJoyWrapper (in PPJoyWrapper.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	message As String, _
	inner As Exception _
)
C#
public PPJoyException(
	string message,
	Exception inner
)
Visual C++
public:
PPJoyException(
	String^ message, 
	Exception^ inner
)

Parameters

message
Type: System..::.String
The error message that explains the reason for the Exception.
inner
Type: System..::.Exception
The Exception that is the cause of the current Exception, or nullNothingnullptra null reference (Nothing in Visual Basic) if no inner Exception is specified.

See Also