Merge in RR/pyinfra from request_as_json_rather_than_data to master
Squashed commit of the following:
commit 6301e00be6d4d76b82b4c153f22271bb3367d3ac
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Fri Apr 22 17:02:02 2022 +0200
added test for sending pdf plus metadata in the same request as one json dict
35 lines
424 B
Python
35 lines
424 B
Python
class AnalysisFailure(Exception):
|
|
pass
|
|
|
|
|
|
class DataLoadingFailure(Exception):
|
|
pass
|
|
|
|
|
|
class ProcessingFailure(Exception):
|
|
pass
|
|
|
|
|
|
class UnknownStorageBackend(ValueError):
|
|
pass
|
|
|
|
|
|
class InvalidEndpoint(ValueError):
|
|
pass
|
|
|
|
|
|
class UnknownClient(ValueError):
|
|
pass
|
|
|
|
|
|
class ConsumerError(Exception):
|
|
pass
|
|
|
|
|
|
class NoSuchContainer(KeyError):
|
|
pass
|
|
|
|
|
|
class IntentionalTestException(RuntimeError):
|
|
pass
|