2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00
Ghost/core/server/errors/internal-server-error.js
Sebastian Gierlinger fdcb67d3cc Rename error.type to error.errorType
closes #5178
- renamed error.type to error.errorType
2015-04-22 22:29:45 +02:00

14 lines
410 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.errorType = this.name;
}
InternalServerError.prototype = Object.create(Error.prototype);
InternalServerError.prototype.name = 'InternalServerError';
module.exports = InternalServerError;