Class ConfigurationSourceException

  • All Implemented Interfaces:
    Serializable

    public class ConfigurationSourceException
    extends ConfigurationException
    A specialized runtime exception to indicate a failure to load a configuration from the Source.
    Since:
    0.1.0
    Author:
    oswaldo.bapvic.jr (Oswaldo Junior)
    See Also:
    Serialized Form
    • Constructor Detail

      • ConfigurationSourceException

        public ConfigurationSourceException​(String message,
                                            Object... args)
        Constructs a new exception with the specified detail message. A detail message is a String that describes this particular exception.
        Parameters:
        message - the detailed message, which is saved for later retrieval by the Throwable.getMessage() method
        args - arguments to the message format, as in String.format(String, Object...)
      • ConfigurationSourceException

        public ConfigurationSourceException​(Throwable cause,
                                            String message,
                                            Object... args)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        cause - the cause, which is saved for later retrieval by the Throwable.getCause() method. (A null value is permitted, and indicates that the cause is nonexistent or unknown)
        message - the detailed message, which is saved for later retrieval by the Throwable.getMessage() method
        args - arguments to the message format, as in String.format(String, Object...)
      • ConfigurationSourceException

        public ConfigurationSourceException​(Throwable cause)
        Constructs a new exception with the specified cause. This constructor is useful for exceptions that are wrappers for other throwables.
        Parameters:
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). A null value is permitted, and indicates that the cause is nonexistent or unknown.