gen_ai_hub.orchestration.exceptions
index
/home/jenkins/agent/workspace/ation_generative-ai-hub-sdk_main/gen_ai_hub/orchestration/exceptions.py

 
Classes
       
builtins.Exception(builtins.BaseException)
OrchestrationError

 
class OrchestrationError(builtins.Exception)
    OrchestrationError(request_id: str, message: str, code: int, location: str, module_results: Dict[str, Any])
 
This exception is raised when an error occurs during the execution of the
orchestration service, typically due to incorrect usage, invalid configurations,
or issues with run parameters defined by the user.
 
Args:
    request_id: Unique identifier for the request that encountered the error.
    message: Detailed error message describing the issue.
    code: Error code associated with the specific type of failure.
    location: Specific component or step in the orchestration process where the error occurred.
    module_results: State information and partial results from various modules
                    at the time of the error, useful for debugging.
 
 
Method resolution order:
OrchestrationError
builtins.Exception
builtins.BaseException
builtins.object

Methods defined here:
__init__(self, request_id: str, message: str, code: int, location: str, module_results: Dict[str, Any])
Initialize self.  See help(type(self)) for accurate signature.

Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)

Static methods inherited from builtins.Exception:
__new__(*args, **kwargs) from builtins.type
Create and return a new object.  See help(type) for accurate signature.

Methods inherited from builtins.BaseException:
__delattr__(self, name, /)
Implement delattr(self, name).
__getattribute__(self, name, /)
Return getattr(self, name).
__reduce__(...)
Helper for pickle.
__repr__(self, /)
Return repr(self).
__setattr__(self, name, value, /)
Implement setattr(self, name, value).
__setstate__(...)
__str__(self, /)
Return str(self).
with_traceback(...)
Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.

Data descriptors inherited from builtins.BaseException:
__cause__
exception cause
__context__
exception context
__dict__
__suppress_context__
__traceback__
args

 
Data
        Any = typing.Any
Dict = typing.Dict