mirror of
https://github.com/jsbin/jsbin.git
synced 2026-01-18 15:18:04 +00:00
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
// Create a not found error object. This should at some point inherit
|
|
// from a HTTPError object with a nice .toJSON() method that can be
|
|
// used directly by handlers.
|
|
function HTTPError(status, message) {
|
|
Error.call(this, message);
|
|
|
|
// Remove the Error itself from the stack trace.
|
|
// http://code.google.com/p/v8/wiki/JavaScriptStackTraceApi
|
|
Error.captureStackTrace(this, this.constructor);
|
|
|
|
this.name = this.constructor.name;
|
|
this.status = status;
|
|
this.message = message || '';
|
|
}
|
|
HTTPError.prototype = Object.create(Error.prototype);
|
|
HTTPError.prototype = Object.create(HTTPError.prototype);
|
|
|
|
function NotFound(message) {
|
|
Error.call(this, 404, message);
|
|
}
|
|
NotFound.prototype = Object.create(HTTPError.prototype);
|
|
|
|
module.exports.NotFound = NotFound;
|
|
|
|
function NotAuthorized(message) {
|
|
Error.call(this, 401, message);
|
|
}
|
|
NotAuthorized.prototype = Object.create(HTTPError.prototype);
|
|
|
|
module.exports.NotFound = NotFound;
|
|
|
|
function BadRequest(message) {
|
|
HTTPError.call(this, 400, message);
|
|
}
|
|
BadRequest.prototype = Object.create(HTTPError.prototype);
|
|
|
|
module.exports.BadRequest = BadRequest;
|