class AgentBayError(Exception)Base exception for all AgentBay SDK errors.
def __init__(self, message=None, *args, **kwargs)class WsCancelledError(AgentBayError)Raised when a WS stream is cancelled by the caller.
class AuthenticationError(AgentBayError)Raised when there is an authentication error.
def __init__(self, message="Authentication failed", *args, **kwargs)class APIError(AgentBayError)Raised when there is an error with the API.
def __init__(self, message="API error", status_code=None, *args, **kwargs)class FileError(AgentBayError)Raised for errors related to file operations.
def __init__(self, message="File operation error", *args, **kwargs)class CommandError(AgentBayError)Raised for errors related to command execution.
def __init__(self, message="Command execution error", *args, **kwargs)class SessionError(AgentBayError)Raised for errors related to session operations.
def __init__(self, message="Session error", *args, **kwargs)class OssError(AgentBayError)Raised for errors related to OSS operations.
def __init__(self, message="OSS operation error", *args, **kwargs)class BrowserError(AgentBayError)Raised when there is an error with the browser.
def __init__(self, message="Browser error", *args, **kwargs)class AgentError(AgentBayError)Raised for errors related to Agent actions.
def __init__(self, message="Agent action error", *args, **kwargs)class ClearanceTimeoutError(AgentBayError)Raised when context clearing operation times out.
def __init__(self, message="Context clearing operation timed out", *args, **kwargs)Documentation generated automatically from source code using pydoc-markdown.