Partager via


ObjectDisposedException Constructor (String, Exception)

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

Namespace: System
Assembly: mscorlib (in mscorlib.dll)

Syntax

public ObjectDisposedException (
         string message,
         Exception innerException
)

Parameters

  • message
    The error message that explains the reason for the exception.
  • innerException
    The exception that is the cause of the current exception. If innerException is not null, the current exception is raised in a catch block that handles the inner exception.

Remarks

An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor.

Version Information

Available in the .NET Micro Framework versions 3.0, 3.5, 4.0, and 4.1.

See Also

Reference

ObjectDisposedException Class
ObjectDisposedException Members
System Namespace