10 lines
143 B
JavaScript
10 lines
143 B
JavaScript
export class AbortReason {
|
|
constructor(reason) {
|
|
this.reason = reason;
|
|
}
|
|
|
|
toString() {
|
|
return this.reason;
|
|
}
|
|
}
|