export class AbortReason { constructor(reason) { this.reason = reason; } toString() { return this.reason; } }