254e0f0597
close #2757, refs #5286 - moves error formatting from api/index into errors lib - moves error handling from api/index into its own middleware - adds extra middleware for method not allowed which captures all unsupported routes
15 lines
414 B
JavaScript
15 lines
414 B
JavaScript
// # Not found error
|
|
// Custom error class with status code and type prefilled.
|
|
|
|
function MethodNotAllowedError(message) {
|
|
this.message = message;
|
|
this.stack = new Error().stack;
|
|
this.code = 405;
|
|
this.errorType = this.name;
|
|
}
|
|
|
|
MethodNotAllowedError.prototype = Object.create(Error.prototype);
|
|
MethodNotAllowedError.prototype.name = 'MethodNotAllowedError';
|
|
|
|
module.exports = MethodNotAllowedError;
|