File size: 143 Bytes
519a20c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
export class AbortReason {
    constructor(reason) {
        this.reason = reason;
    }

    toString() {
        return this.reason;
    }
}