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

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

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

function ReadWriteError(message) {
    ExecutionError.call(this, message);
    return this;
}

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

ReadWriteError.prototype.getExpression = function(context) {
    return context.getRegisteredValue("READ_WRITE");
};

exports.ReadWriteError = ReadWriteError;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy