Spaces:
Runtime error
Runtime error
File size: 166 Bytes
c7052c4 | 1 2 3 4 5 6 7 8 9 10 | export class RouterError extends Error {
constructor(
message: string,
public cause?: Error,
) {
super(message);
this.name = 'RouterError';
}
}
|