Compare commits

...

1 Commits
0.9 ... 0.10

Author SHA1 Message Date
Romuald Bierbasz
e244d3bb44 SDK-2577: Add UnknownBackendResponse 2019-02-28 15:20:03 +01:00
2 changed files with 5 additions and 1 deletions

View File

@@ -20,6 +20,10 @@ class BackendError(ApplicationError):
def __init__(self, data=None):
super().__init__(4, "Backend error", data)
class UnknownBackendResponse(ApplicationError):
def __init__(self, data=None):
super().__init__(4, "Backend responded in uknown way", data)
class InvalidCredentials(ApplicationError):
def __init__(self, data=None):
super().__init__(100, "Invalid credentials", data)

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="galaxy.plugin.api",
version="0.9",
version="0.10",
description="Galaxy python plugin API",
author='Galaxy team',
author_email='galaxy@gog.com',