Package com.google.genai.errors
Class GenAiIOException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.google.genai.errors.GenAiIOException
- All Implemented Interfaces:
Serializable
IO exception raised in the GenAI SDK.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionGenAiIOException
(String message) Creates a new GenAiIoException with the specified message.GenAiIOException
(String message, IOException cause) Creates a new GenAiIoException with the specified message and the original IOException.GenAiIOException
(Throwable cause) Creates a new GenAiIoException with the specified 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
-
GenAiIOException
Creates a new GenAiIoException with the specified message and the original IOException. -
GenAiIOException
Creates a new GenAiIoException with the specified message. -
GenAiIOException
Creates a new GenAiIoException with the specified cause.
-