UnauthorizedError.ts 165 B

123456
  1. export default class UnauthorizedError extends Error {
  2. constructor(message: string = "Unauthorized", ...args: any[]) {
  3. super(message, ...args);
  4. }
  5. }