Ghost/core/server/errors/email-error.js

15 lines
361 B
JavaScript
Raw Normal View History

// # Email error
// Custom error class with status code and type prefilled.
function EmailError(message) {
this.message = message;
this.stack = new Error().stack;
this.statusCode = 500;
this.errorType = this.name;
}
EmailError.prototype = Object.create(Error.prototype);
EmailError.prototype.name = 'EmailError';
module.exports = EmailError;