Returns a new exception. The returned instance is not an instance of this class in the prototypical sense. Thus must use isInstance to check whether or not an instance is an instance of this class.
a message of a new exception
a new exception
Returns true if the specified error is an instance of this class.
an error to be checked
true if the specified error is an instance of this class
Generated using TypeDoc
Thrown to indicate that there are no element.
throw NoSuchElementException.create();
Must use
isInstance
static method instead of theinstanceof
to check whether an error is an instance of this class. This limitation comes from the fact that the custom exceptions inheriting from the Error class are not printed well in the console.const e = NoSuchElementException.create(); console.log( e instanceof NoSuchElementException ); // => false console.log( NoSuchElementException.isInstance( e ) ); // => true