mirror of
https://github.com/TryGhost/Ghost.git
synced 2023-12-13 21:00:40 +01:00
2c3abeee03
closes #4069 - Rename everything from camelCase to lowercase + dashes - Remove usage of `server`, `app` and `instance`
14 lines
350 B
JavaScript
14 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;
|