exc.py 301 B

12345678910111213141516
  1. class CodeNodeError(ValueError):
  2. """Base class for code node errors."""
  3. pass
  4. class OutputValidationError(CodeNodeError):
  5. """Raised when there is an output validation error."""
  6. pass
  7. class DepthLimitError(CodeNodeError):
  8. """Raised when the depth limit is reached."""
  9. pass