Ghost/core/server/errors/method-not-allowed-error.js

15 lines
420 B
JavaScript
Raw Normal View History

// # Not found error
// Custom error class with status code and type prefilled.
function MethodNotAllowedError(message) {
this.message = message;
this.stack = new Error().stack;
this.statusCode = 405;
this.errorType = this.name;
}
MethodNotAllowedError.prototype = Object.create(Error.prototype);
MethodNotAllowedError.prototype.name = 'MethodNotAllowedError';
module.exports = MethodNotAllowedError;