Error.notImplemented Function

Creates an Error object that represents the Sys.NotImplementedException exception.

var err = Error.notImplemented(message);

message

(Optional) An error message string. The value can be null. If message is null, a default message is used.

An Error object.

The notImplemented function lets you communicate that an exception has occurred when a requested method is not supported by an object.

Show: