Files
privateGPT/private_gpt/components/context/errors.py
Javier Martinez 091d5f7020 fix: random bugs (#2301)
* fix: celery callbacks

* fix: s3 + skill creator

* fix: resumable when there's params

* fix: add distributed cache

* fix: do durable context stack

* fix: mcp tools

* fix: present server tool

* fix: add cache to the skills

* fix: mcp

* fix: mypy
2026-07-16 09:14:43 +02:00

36 lines
1.1 KiB
Python

"""Define typed errors for context assembly validation."""
from enum import StrEnum
class ContextErrorCode(StrEnum):
"""Define stable error codes for context module failures."""
TOOL_NAME_CONFLICT = "TOOL_NAME_CONFLICT"
NON_RESUMABLE_TOOL = "NON_RESUMABLE_TOOL"
class ContextDomainError(Exception):
"""Represent a typed context domain error with stable code and message."""
def __init__(self, code: ContextErrorCode, message: str) -> None:
"""Initialize the typed context domain error."""
self.code = code
self.message = message
super().__init__(message)
class ToolNameConflictError(ContextDomainError):
"""Raise when duplicate tool names are detected across tool layers."""
def __init__(self, message: str) -> None:
"""Initialize a tool-name-conflict error."""
super().__init__(ContextErrorCode.TOOL_NAME_CONFLICT, message)
class NonResumableToolError(ContextDomainError):
"""Raise when a server tool cannot be rebuilt after serialization."""
def __init__(self, message: str) -> None:
super().__init__(ContextErrorCode.NON_RESUMABLE_TOOL, message)