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

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

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

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

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

NotStorableError.prototype.getExpression = function(context) {
	return context.getRegisteredValue("NOT_STORABLE");
};

exports.NotStorableError = NotStorableError;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy