Class RegistryException

    • Constructor Detail

      • RegistryException

        public RegistryException()
        Creates a new RegistryException with no detail message.
      • RegistryException

        public RegistryException​(String message)
        Creates a new RegistryException with the specified detail message.
        Parameters:
        message - a String.
      • RegistryException

        public RegistryException​(Throwable t)
        Creates a new RegistryException with no detail message, wrapping another Throwable.
        Parameters:
        t - a Throwable.
      • RegistryException

        public RegistryException​(Throwable t,
                                 String message)
        Deprecated.
        use new RegistryException(message, cause)
        Creates a new RegistryException with the specified detail message, wrapping another Throwable.
        Parameters:
        t - a Throwable.
        message - a String.