Table of Contents

Class NotImplementedException

Namespace
System
Assembly
mscorlib.dll

The exception that is thrown when a requested method or operation is not implemented.

public class NotImplementedException : SystemException
Inheritance
NotImplementedException
Inherited Members
Extension Methods

Constructors

NotImplementedException()

Initializes a new instance of the NotImplementedException class with default properties.

public NotImplementedException()

NotImplementedException(string)

Initializes a new instance of the NotImplementedException class with a specified error message.

public NotImplementedException(string message)

Parameters

message string

The error message that explains the reason for the exception.

NotImplementedException(string, Exception)

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

public NotImplementedException(string message, Exception innerException)

Parameters

message string

The error message that explains the reason for the exception.

innerException Exception

The exception that is the cause of the current exception. If the inner parameter is not null, the current exception is raised in a catch block that handles the inner exception.