mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
15 lines
405 B
JavaScript
15 lines
405 B
JavaScript
|
// # 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;
|