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/email-error.js
Fabian Becker 2c3abeee03 Naming cleanup
closes #4069
- Rename everything from camelCase to lowercase + dashes
- Remove usage of `server`, `app` and `instance`
2014-09-20 21:09:16 +02:00

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;