Skip to main content

Pentaho+ documentation has moved!

The new product documentation portal is here. Check it out now at docs.hitachivantara.com

 

Hitachi Vantara Lumada and Pentaho Documentation

NotImplementedError

pentaho.lang. NotImplementedError

The NotImplementedError class is the class of errors that signals that a method that is either abstract and has not been overridden, or is not abstract but has not been implemented, and is being called.

AMD Module

require(["pentaho/lang/NotImplementedError"], function(NotImplementedError) { /* code goes here */ });

Extends

Constructor

Name Description
new NotImplementedError(text)

Creates a not implemented error object.

Members

Name Description
name :  string

The name of the type of error.

Constructor Details

new NotImplementedError(text)

Creates a not implemented error object.

Source: javascript/web/pentaho/lang/NotImplementedError.js, line 25

Parameters:
Name Default Value Summary
text : string
Optional

Complementary text.

Members Details

name:  string

The name of the type of error.

Source: javascript/web/pentaho/lang/NotImplementedError.js, line 53

Default Value: "NotImplementedError"