1/** 2 * Custom error class for authentication errors. 3 */ 4export class AuthError extends Error { 5 constructor(message: string) { 6 super(message); 7 this.name = "AuthError"; 8 Object.setPrototypeOf(this, AuthError.prototype); 9 } 10}