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