Files
AI/참고/guardrails-main/guardrails/utils/exception_utils.py
2026-05-12 19:40:31 +09:00

10 lines
274 B
Python

class UserFacingException(Exception):
"""Wraps an exception to denote it as user-facing.
It will be unwrapped in runner.
"""
def __init__(self, original_exception: Exception):
super().__init__()
self.original_exception = original_exception