Ghost/core/server/errors/internalservererror.js

15 lines
405 B
JavaScript
Raw Normal View History

// # Internal Server Error
// Custom error class with status code and type prefilled.
function InternalServerError(message) {
this.message = message;
this.stack = new Error().stack;
this.code = 500;
this.type = this.name;
}
InternalServerError.prototype = Object.create(Error.prototype);
InternalServerError.prototype.name = "InternalServerError";
module.exports = InternalServerError;