Module de.seggebaeing.sqlanalyzer
Class LLMException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.seggebaeing.sqlanalyzer.logic.promptable.exception.LLMException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
RateLimitException
Exception type for errors occurring during LLM interactions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionLLMException
(String message) Creates a new exception with a detail message.LLMException
(String message, Throwable cause) Creates a new exception with a detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
LLMException
Creates a new exception with a detail message.- Parameters:
message
- the detail message
-
LLMException
Creates a new exception with a detail message and cause.- Parameters:
message
- the detail messagecause
- the underlying cause of the exception
-