d44b3c1
1
2
3
4
5
6
7
8
9
10
export class AbortReason { constructor(reason) { this.reason = reason; } toString() { return this.reason; } }