jstd-web/node_modules/@uppy/companion-client/lib/AuthError.js

12 lines
195 B
JavaScript
Raw Normal View History

2025-11-25 15:23:22 +08:00
'use strict';
class AuthError extends Error {
constructor() {
super('Authorization required');
this.name = 'AuthError';
this.isAuthError = true;
}
}
module.exports = AuthError;