export class RouterError extends Error { constructor( message: string, public cause?: Error, ) { super(message); this.name = 'RouterError'; } }