Uploaded image for project: 'Commons Configuration'
  1. Commons Configuration
  2. CONFIGURATION-666

Add convenience ctor ConfigurationRuntimeException(String, Object...)

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 2.2
    • None
    • None

    Description

      Add convenience ctor ConfigurationRuntimeException(String, Object...):

          /**
           * Constructs a new {@code ConfigurationRuntimeException} with
           * specified detail message using {@link String#format(String,Object...)}.
           *
           * @param message  the error message
           * @param args arguments to the error message
           * @see String#format(String,Object...)
           */
          public ConfigurationRuntimeException(String message, Object... args)
          {
              super(String.format(message, args));
          }
      

      Attachments

        Activity

          People

            ggregory Gary D. Gregory
            ggregory Gary D. Gregory
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: