fdcb67d3cc
closes #5178 - renamed error.type to error.errorType
15 lines
355 B
JavaScript
15 lines
355 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.errorType = this.name;
|
|
}
|
|
|
|
EmailError.prototype = Object.create(Error.prototype);
|
|
EmailError.prototype.name = 'EmailError';
|
|
|
|
module.exports = EmailError;
|