mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 22:53:32 +03:00
fdcb67d3cc
closes #5178 - renamed error.type to error.errorType
15 lines
454 B
JavaScript
15 lines
454 B
JavaScript
// # Request Entity Too Large Error
|
|
// Custom error class with status code and type prefilled.
|
|
|
|
function RequestEntityTooLargeError(message) {
|
|
this.message = message;
|
|
this.stack = new Error().stack;
|
|
this.code = 413;
|
|
this.errorType = this.name;
|
|
}
|
|
|
|
RequestEntityTooLargeError.prototype = Object.create(Error.prototype);
|
|
RequestEntityTooLargeError.prototype.name = 'RequestEntityTooLargeError';
|
|
|
|
module.exports = RequestEntityTooLargeError;
|