
* feat: Introduce the allow_remote_services option to allow remote connections while processing Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * add option in the example Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * enhance docs Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * rename to enable_remote_services Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> --------- Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
11 lines
134 B
Python
11 lines
134 B
Python
class BaseError(RuntimeError):
|
|
pass
|
|
|
|
|
|
class ConversionError(BaseError):
|
|
pass
|
|
|
|
|
|
class OperationNotAllowed(BaseError):
|
|
pass
|