summaryrefslogtreecommitdiffhomepage
path: root/app/errors.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/errors.js')
-rw-r--r--app/errors.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/errors.js b/app/errors.js
index 929fa52ab9..993b4d0ff1 100644
--- a/app/errors.js
+++ b/app/errors.js
@@ -49,13 +49,3 @@ export class CommunicationError extends Error {
super('api.mullvad.net is blocked, please check your firewall');
}
}
-
-export class UnknownError extends Error {
- constructor(cause: string) {
- super(`An unknown error occurred, ${cause}`);
- }
-
- get userFriendlyTitle(): string {
- return 'Something went wrong';
- }
-}