Spaces:
Sleeping
Sleeping
File size: 778 Bytes
c2b7eb3 | 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 = class URLError extends Error {
constructor(msg, fn = URLError, code = fn.name) {
super(`${code}: ${msg}`)
this.code = code
if (Error.captureStackTrace) Error.captureStackTrace(this, fn)
}
get name() {
return 'URLError'
}
static INVALID_URL(msg, input) {
const err = new URLError(msg, URLError.INVALID_URL)
err.input = input
return err
}
static INVALID_URL_SCHEME(msg = 'Invalid URL') {
return new URLError(msg, URLError.INVALID_URL_SCHEME)
}
static INVALID_FILE_URL_HOST(msg = 'Invalid file: URL host') {
return new URLError(msg, URLError.INVALID_FILE_URL_HOST)
}
static INVALID_FILE_URL_PATH(msg = 'Invalid file: URL path') {
return new URLError(msg, URLError.INVALID_FILE_URL_PATH)
}
}
|