Mono Class Library: System.Exception Overview | Members

System.Exception Constructor

Constructs a new instance of the Exception class. [Edit]

public Exception (string message, Exception innerException)

Parameters

message
A string that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. [Edit]
innerException
An instance of Exception that is the cause of the current exception. If innerException is non-null, then the current exception was raised in a catch block handling innerException . [Edit]

Remarks

This constructor initializes the Exception.Message property of the new instance using message, and the Exception.InnerException property using innerException. If message is null, the Exception.Message property is initialized to the system-supplied message provided by the constructor that takes no arguments.

The Exception.StackTrace property is initialized to string.Empty.

[Edit]

Requirements

Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0