diff options
Diffstat (limited to 'src/leap/base/exceptions.py')
-rw-r--r-- | src/leap/base/exceptions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/base/exceptions.py b/src/leap/base/exceptions.py index 2e31b33b..3d8dde48 100644 --- a/src/leap/base/exceptions.py +++ b/src/leap/base/exceptions.py @@ -67,7 +67,7 @@ class NoDefaultInterfaceFoundError(LeapException): "is not connected to the internet") -class NoConnectionToGateway(CriticalError): +class NoConnectionToGateway(LeapException): message = "no connection to gateway" usermessage = translate( "Errors", @@ -75,7 +75,7 @@ class NoConnectionToGateway(CriticalError): "with your internet connection") -class NoInternetConnection(CriticalError): +class NoInternetConnection(LeapException): message = "No Internet connection found" usermessage = translate( "Errors", |