diff options
author | kali <kali@leap.se> | 2013-01-09 05:40:12 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2013-01-09 05:40:12 +0900 |
commit | 1e116fe9453a9010338820394ace05a4f0bcc648 (patch) | |
tree | f1e70727cb1a627df86a90bcdbd309488b652915 /src/leap/base/exceptions.py | |
parent | 239a95a65055a5b7128894faf30938496382fbe1 (diff) |
dont shut down when conn lost
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 c5e56b76..2e31b33b 100644 --- a/src/leap/base/exceptions.py +++ b/src/leap/base/exceptions.py @@ -90,8 +90,8 @@ class CannotResolveDomainError(LeapException): "Domain cannot be found") -class TunnelNotDefaultRouteError(CriticalError): +class TunnelNotDefaultRouteError(LeapException): message = "Tunnel connection dissapeared. VPN down?" usermessage = translate( "Errors", - "The Encrypted Connection was lost. Shutting down...") + "The Encrypted Connection was lost.") |