UnauthorizedError.ts 190 B

12345678
  1. export default class UnauthorizedError extends Error {
  2. constructor(
  3. message: string = 'Unauthorized',
  4. ...args: (ErrorOptions | undefined)[]
  5. ) {
  6. super(message, ...args)
  7. }
  8. }