We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c31e86a commit 8929879Copy full SHA for 8929879
packages/models-library/src/models_library/api_schemas_directorv2/errors.py
@@ -1,7 +1,7 @@
1
from typing import Annotated
2
3
-from common_library.errors_classes import OsparcErrorMixin
4
from pydantic import BaseModel, Field
+from servicelib.rabbitmq._errors import RPCInterfaceError
5
6
7
class Error(BaseModel):
@@ -18,7 +18,7 @@ class ErrorEnveloped(BaseModel):
18
error: ErrorType
19
20
21
-class BaseRpcError(OsparcErrorMixin, Exception):
+class BaseRpcError(RPCInterfaceError):
22
pass
23
24
0 commit comments