mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-01 05:29:41 +00:00
10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
|
|
class AuthError extends Error {
|
||
|
|
constructor(message, statusCode = 500) {
|
||
|
|
super(message)
|
||
|
|
this.statusCode = statusCode
|
||
|
|
this.name = 'AuthError'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = AuthError
|