Remove LoggedInElsewhere error type

This error is obsolete. It was never used by most plugins and Galaxy
does not handle it in any specific way.
This commit is contained in:
Miron Moderau
2021-09-08 11:33:16 +02:00
parent 46588c321e
commit 8f91f705ee
2 changed files with 10 additions and 7 deletions

View File

@@ -34,10 +34,6 @@ class NetworkError(ApplicationError):
def __init__(self, data=None):
super().__init__(101, "Network error", data)
class LoggedInElsewhere(ApplicationError):
def __init__(self, data=None):
super().__init__(102, "Logged in elsewhere", data)
class ProtocolError(ApplicationError):
def __init__(self, data=None):
super().__init__(103, "Protocol error", data)