Files
WAI_Project_VUE/node_modules/@uppy/companion-client/lib/AuthError.js
2025-11-24 23:24:06 +08:00

12 lines
195 B
JavaScript

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