mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-31 00:20:03 +01:00
5 lines
163 B
Python
5 lines
163 B
Python
class TooDeepRecursionError(Exception):
|
|
def __init__(self, message='Recursion is too deep!'):
|
|
self.message = message
|
|
super().__init__(message)
|