export class AuthenticationError extends Error { constructor(message: string) { super(message); this.name = "AuthenticationError"; } } export class ValidationError extends Error { constructor(message: string) { super(message); this.name = "ValidationError"; } } export class NotFoundError extends Error { constructor(message: string) { super(message); this.name = "ValidationError"; } }