1export class AuthenticationError extends Error { 2 constructor(message: string) { 3 super(message); 4 this.name = 'AuthenticationError'; 5 } 6}