mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 03:22:21 +03:00
fd0f5a5028
closes #2690 - added new error classes - moved errorhandling.js to /errors/index.js - changed API errors to use new classes - updated tests
15 lines
350 B
JavaScript
15 lines
350 B
JavaScript
// # Email error
|
|
// Custom error class with status code and type prefilled.
|
|
|
|
function EmailError(message) {
|
|
this.message = message;
|
|
this.stack = new Error().stack;
|
|
this.code = 500;
|
|
this.type = this.name;
|
|
}
|
|
|
|
EmailError.prototype = Object.create(Error.prototype);
|
|
EmailError.prototype.name = "EmailError";
|
|
|
|
|
|
module.exports = EmailError; |