export class UnauthorizedError extends Error { constructor() { super("Unauthorized"); Error.captureStackTrace(this, UnauthorizedError); } }