Class: UnsupportedOperationError

UnsupportedOperationError(message)

Represents an error associated with an operation that is not available or should not be invoked. Typically raised when an abstract function of an abstract base class is called because a subclass has not implemented the function.

Constructor

new UnsupportedOperationError(message)

Constructs an unsupported-operation error with a specified message.
Parameters:
Name Type Description
message String The message.
Source:

Extends

Methods

toString() → {String}

Returns the message and stack trace associated with this error.
Inherited From:
Source:
Returns:
The message and stack trace associated with this error.
Type
String