Fork me on GitHub

Now on: joopl.NotImplementedException

Extends joopl.Exception

Represents an exception that occurs when a class member is not implemented.

Please read more about exception handling by following this link to "Exception handling best practices"

Constructor

joopl.NotImplementedException

(
  • memberName
)

Defined in src\joopl.js:1604

Parameters:

  • memberName String

    The affected member name which does not implement something

Example:

throw new $global.joopl.NotImplementedException({ memberName: "someMethod"});

Methods

toString

() String

Returns the exception message plus the stack trace as a concatenated string

Returns:

String:

The exception message plus the stack trace as a concatenated string

Properties

error

Error

Gets underlying Error instance

innerException

Exception

Gets an inner exception (optional) which provides information about the sorrounding one

memberName

String

Defined in src\joopl.js:1629

Gets the not implemented member name

message

String

Gets the human-readable reason text for this exception

stackTrace

Array

Gets the exception's stack trace as an array where each index is a code line