All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.prompto.error.NullReferenceError.js Maven / Gradle / Ivy

var ExecutionError = require("./ExecutionError").ExecutionError;

function NullReferenceError() {
	ExecutionError.call(this);
	return this;
}

NullReferenceError.prototype = Object.create(ExecutionError.prototype);
NullReferenceError.prototype.constructor = NullReferenceError;

NullReferenceError.prototype.getExpression = function(context) {
	return context.getRegisteredValue("NULL_REFERENCE");
};

exports.NullReferenceError = NullReferenceError;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy