System.NotImplementedException Class

public class NotImplementedException : SystemException

Base Types

Object
  Exception
    SystemException
      NotImplementedException

Assembly

mscorlib

Library

BCL

Summary

Represents the error that occurs when a requested operation is not implemented for a given type.

Description

[Note: A number of the types and constructs, specified elsewhere in this Standard, are not required of CLI implementations that conform only to the Kernel Profile. For example, the floating-point feature set consists of the floating-point data types Singleand Double. If support for these is omitted from an implementation, any attempt to reference a signature that includes the floating-point data types results in an exception of type NotImplementedException .

]

See Also

System Namespace

Members

NotImplementedException Constructors

NotImplementedException() Constructor
NotImplementedException(System.String) Constructor
NotImplementedException(System.String, System.Exception) Constructor


NotImplementedException() Constructor

public NotImplementedException();

Summary

Constructs and initializes a new instance of the NotImplementedException class.

Description

This constructor initializes the System.NotImplementedException.Message property of the new instance to a system-supplied message that describes the error. This message takes into account the current system culture.

The System.NotImplementedException.InnerException property is initialized to null .

See Also

System.NotImplementedException Class, System Namespace

NotImplementedException(System.String) Constructor

public NotImplementedException(string message);

Summary

Constructs and initializes a new instance of the NotImplementedException class.

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.

Description

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

See Also

System.NotImplementedException Class, System Namespace

NotImplementedException(System.String, System.Exception) Constructor

public NotImplementedException(string message, Exception innerException);

Summary

Constructs and initializes a new instance of the NotImplementedException class.

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.
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 .

Description

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

[Note: For information on inner exceptions, see System.Exception.InnerException.]

See Also

System.NotImplementedException Class, System Namespace