mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-29 15:45:44 +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)
|