export class PageNotFoundError extends Error { constructor(message = "Page not found", options?: ErrorOptions) { super(message, options); this.name = "PageNotFoundError"; } }