Class TransientAiException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.ai.retry.TransientAiException
- All Implemented Interfaces:
Serializable
Root of the hierarchy of Model access exceptions that are considered transient - where
a previously failed operation might be able to succeed when the operation is retried
without any intervention.
- Since:
- 0.8.1
- Author:
- Christian Tzolov
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTransientAiException(String message) Constructor with message.TransientAiException(String message, Throwable cause) Constructor with message and cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TransientAiException
Constructor with message.- Parameters:
message- the exception message
-
TransientAiException
-