OpenManus/app/exceptions.py
2025-03-07 01:11:08 +08:00

6 lines
143 B
Python

class ToolError(Exception):
"""Raised when a tool encounters an error."""
def __init__(self, message):
self.message = message