mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
class AuthError extends Error {
|
|
constructor () {
|
|
super('Authorization required')
|
|
this.name = 'AuthError'
|
|
this.isAuthError = true
|
|
}
|
|
}
|
|
|
|
module.exports = AuthError
|