mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 11:29:39 +08:00
10 lines
240 B
Python
10 lines
240 B
Python
from __future__ import annotations
|
|
|
|
|
|
class AdapterNotFoundError(Exception):
|
|
def __init__(self, adapter_name: str):
|
|
self.adapter_name = adapter_name
|
|
|
|
def __str__(self):
|
|
return f'Adapter {self.adapter_name} not found'
|