uppy/packages/@uppy/companion-client/src/AuthError.js
Kevin van Zonneveld 14c8a8cde8
autofix code
2021-03-09 20:59:02 +01:00

9 lines
177 B
JavaScript

class AuthError extends Error {
constructor () {
super('Authorization required')
this.name = 'AuthError'
this.isAuthError = true
}
}
module.exports = AuthError