mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
2c3abeee03
closes #4069 - Rename everything from camelCase to lowercase + dashes - Remove usage of `server`, `app` and `instance`
14 lines
449 B
JavaScript
14 lines
449 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.type = this.name;
|
|
}
|
|
|
|
RequestEntityTooLargeError.prototype = Object.create(Error.prototype);
|
|
RequestEntityTooLargeError.prototype.name = 'RequestEntityTooLargeError';
|
|
|
|
module.exports = RequestEntityTooLargeError;
|