Class FactoryException

    • Constructor Detail

      • FactoryException

        public FactoryException()
        Construct an exception with no detail message.
      • FactoryException

        public FactoryException​(String message)
        Constructs an exception with the specified detail message.
        Parameters:
        message - the detail message, saved for later retrieval by the Throwable.getMessage() method.
      • FactoryException

        public FactoryException​(Throwable cause)
        Constructs an exception with the specified cause.
        Parameters:
        cause - the cause, saved for later retrieval by the Throwable.getCause() method.
      • FactoryException

        public FactoryException​(String message,
                                Throwable cause)
        Constructs an exception with the specified detail message and cause. The cause is the exception thrown in the underlying database (e.g. IOException or SQLException).
        Parameters:
        message - the detail message, saved for later retrieval by the Throwable.getMessage() method.
        cause - the cause, saved for later retrieval by the Throwable.getCause() method.