summaryrefslogtreecommitdiff
path: root/cli/js/errors.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/errors.ts')
-rw-r--r--cli/js/errors.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/cli/js/errors.ts b/cli/js/errors.ts
index 44f35b438..6aced228a 100644
--- a/cli/js/errors.ts
+++ b/cli/js/errors.ts
@@ -154,12 +154,6 @@ class WriteZero extends Error {
this.name = "WriteZero";
}
}
-class Other extends Error {
- constructor(msg: string) {
- super(msg);
- this.name = "Other";
- }
-}
class UnexpectedEof extends Error {
constructor(msg: string) {
super(msg);
@@ -194,7 +188,6 @@ export const errors = {
TimedOut: TimedOut,
Interrupted: Interrupted,
WriteZero: WriteZero,
- Other: Other,
UnexpectedEof: UnexpectedEof,
BadResource: BadResource,
Http: Http