Class UnableToCreateExtensionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.jdbi.v3.core.JdbiException
org.jdbi.v3.core.extension.UnableToCreateExtensionException
- All Implemented Interfaces:
Serializable
Marks that a specific extension could not be created.
- Since:
- 3.38.0
- See Also:
-
Constructor Summary
ConstructorDescriptionUnableToCreateExtensionException
(String format, Object... args) Constructs a new instance with a message.UnableToCreateExtensionException
(Throwable throwable, String format, Object... args) Constructs a new instance with an exception and a message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnableToCreateExtensionException
Constructs a new instance with a message.- Parameters:
format
- AString.format(java.lang.String, java.lang.Object...)
format stringargs
- Arguments for the format string
-
UnableToCreateExtensionException
Constructs a new instance with an exception and a message.- Parameters:
throwable
- A throwableformat
- AString.format(java.lang.String, java.lang.Object...)
format stringargs
- Arguments for the format string
-
UnableToCreateExtensionException
-