6 lines
151 B
TypeScript
Raw Normal View History

2025-04-03 23:27:32 +02:00
export class RangeParserError extends Error {
constructor(start: any, end: any) {
super(`Invalid start and end values: ${start}-${end}.`);
}
}