forked from nodeSolidServer/node-solid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp-error.js
More file actions
34 lines (31 loc) · 846 Bytes
/
http-error.js
File metadata and controls
34 lines (31 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module.exports = HTTPError
function HTTPError (status, message) {
if (!(this instanceof HTTPError)) {
return new HTTPError(status, message)
}
// Error.captureStackTrace(this, this.constructor)
this.name = this.constructor.name
// If status is an object it will be of the form:
// {status: , message: }
if (typeof status === 'number') {
this.message = message || 'Error occurred'
this.status = status
} else {
const err = status
let _status
let _code
let _message
if (err && err.status) {
_status = err.status
}
if (err && err.code) {
_code = err.code
}
if (err && err.message) {
_message = err.message
}
this.message = message || _message
this.status = _status || _code === 'ENOENT' ? 404 : 500
}
}
require('util').inherits(module.exports, Error)