0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/server/errors/request-too-large-error.js

15 lines
460 B
JavaScript
Raw Normal View History

// # 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.statusCode = 413;
this.errorType = this.name;
}
RequestEntityTooLargeError.prototype = Object.create(Error.prototype);
RequestEntityTooLargeError.prototype.name = 'RequestEntityTooLargeError';
module.exports = RequestEntityTooLargeError;