Handle aborting status check gracefully

This commit is contained in:
Wolfsblvt
2024-09-07 23:27:46 +02:00
parent d99dfb9168
commit 7952b5f2c9
2 changed files with 20 additions and 5 deletions

View File

@ -0,0 +1,9 @@
export class AbortReason {
constructor(reason) {
this.reason = reason;
}
toString() {
return this.reason;
}
}