Files

10 lines
274 B
Python
Raw Permalink Normal View History

2026-05-12 19:40:31 +09:00
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