Class UnableToCreateExtensionException

  • All Implemented Interfaces:
    java.io.Serializable

    @Beta
    public final class UnableToCreateExtensionException
    extends JdbiException
    Marks that a specific extension could not be created.
    Since:
    3.38.0
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      UnableToCreateExtensionException​(java.lang.String format, java.lang.Object... args)
      Constructs a new instance with a message.
      UnableToCreateExtensionException​(java.lang.Throwable throwable, java.lang.String format, java.lang.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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • UnableToCreateExtensionException

        public UnableToCreateExtensionException​(java.lang.String format,
                                                java.lang.Object... args)
        Constructs a new instance with a message.
        Parameters:
        format - A String.format(java.lang.String, java.lang.Object...) format string
        args - Arguments for the format string
      • UnableToCreateExtensionException

        public UnableToCreateExtensionException​(java.lang.Throwable throwable,
                                                java.lang.String format,
                                                java.lang.Object... args)
        Constructs a new instance with an exception and a message.
        Parameters:
        throwable - A throwable
        format - A String.format(java.lang.String, java.lang.Object...) format string
        args - Arguments for the format string