mirror of
https://github.com/browser-use/browser-use
synced 2026-04-22 17:45:09 +02:00
6 lines
186 B
Python
6 lines
186 B
Python
class LLMException(Exception):
|
|
def __init__(self, status_code, message):
|
|
self.status_code = status_code
|
|
self.message = message
|
|
super().__init__(f'Error {status_code}: {message}')
|