Add support for new rest public endpoints (in BfxRestInterface.py, serializers.py and typings.py).

This commit is contained in:
Davide Casale
2022-12-01 17:48:50 +01:00
parent 8e8719e3d7
commit ea6044a5eb
4 changed files with 186 additions and 14 deletions

View File

@@ -1,6 +1,17 @@
__all__ = [
"RequestParametersError"
]
class BfxRestException(Exception):
"""
Base class for all exceptions defined in bfxapi/rest/exceptions.py.
"""
pass
class RequestParametersError(BfxRestException):
"""
This error indicates that there are some invalid parameters sent along with an HTTP request.
"""
pass