GenericException(String, Exception) Constructor

Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.

Definition

Namespace: Application.Helper
Assembly: Application.Helper (in Application.Helper.dll) Version: 2.0.5
C#
public GenericException(
	string message,
	Exception inner
)

Parameters

message  String
The error message that explains the reason for the exception.
inner  Exception
The exception that is the cause of the current exception, or a null reference if no inner exception is specified.

See Also