6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
export class AbortError extends Error {
|
|
constructor(cause: string = 'The task was aborted.') {
|
|
super(cause);
|
|
this.name = 'AbortError';
|
|
}
|
|
}
|