about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn3/llms/errors.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/gn3/llms/errors.py b/gn3/llms/errors.py
index 3512f4d..c5439d6 100644
--- a/gn3/llms/errors.py
+++ b/gn3/llms/errors.py
@@ -35,11 +35,7 @@ class UnprocessableEntity(HTTPError):
             msg, request=request, response=response)
 
 
-class LLMErrorMIxins(Exception):
-    """base class for llm errors"""
-
-
-class LLMError(LLMErrorMIxins):
+class LLMError(Exception):
     """custom exception for LLMErrorMIxins"""
     def __init__(self, *args, **kwargs):
         super().__init__(*args)