
js.prompto.error.NotMutableError.js Maven / Gradle / Ivy
var ExecutionError = require("./ExecutionError").ExecutionError;
function NotMutableError() {
ExecutionError.call(this);
return this;
}
NotMutableError.prototype = Object.create(ExecutionError.prototype);
NotMutableError.prototype.constructor = NotMutableError;
NotMutableError.prototype.getExpression = function(context) {
return context.getRegisteredValue("NOT_MUTABLE");
};
exports.NotMutableError = NotMutableError;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy