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

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

function PromptoError() {
    var tmp = Error.apply(this, arguments);
    this.message = tmp.message
    tmp.name = this.name = 'PromptoError'
    Object.defineProperty(this, "stack", {
        get: function () {
            return tmp.stack
        }
    });
    return this;
}


exports.PromptoError = PromptoError;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy