summaryrefslogtreecommitdiffhomepage
path: root/gui/src/main/errors.ts
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/main/errors.ts')
-rw-r--r--gui/src/main/errors.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/gui/src/main/errors.ts b/gui/src/main/errors.ts
index b7cc82c365..c3071f08a6 100644
--- a/gui/src/main/errors.ts
+++ b/gui/src/main/errors.ts
@@ -21,3 +21,9 @@ export class TooManyDevicesError extends Error {
super('Too many devices');
}
}
+
+export class ListDevicesError extends Error {
+ constructor() {
+ super('Failed to fetch list of devices');
+ }
+}