Class WizPrint.BadArgs

  • All Implemented Interfaces:
    java.io.Serializable
    Enclosing class:
    WizPrint

    public static class WizPrint.BadArgs
    extends java.lang.Exception
    This exception is to report problems that occur with command line arguments.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      BadArgs​(java.util.ResourceBundle i18n, java.lang.String s)
      Create a Fault.
      BadArgs​(java.util.ResourceBundle i18n, java.lang.String s, java.lang.Object o)
      Create a Fault.
      BadArgs​(java.util.ResourceBundle i18n, java.lang.String s, java.lang.Object... o)
      Create a Fault.
    • 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

      • BadArgs

        public BadArgs​(java.util.ResourceBundle i18n,
                       java.lang.String s)
        Create a Fault.
        Parameters:
        i18n - A resource bundle in which to find the detail message.
        s - The key for the detail message.
      • BadArgs

        public BadArgs​(java.util.ResourceBundle i18n,
                       java.lang.String s,
                       java.lang.Object o)
        Create a Fault.
        Parameters:
        i18n - A resource bundle in which to find the detail message.
        s - The key for the detail message.
        o - An argument to be formatted with the detail message by MessageFormat.format(java.lang.Object[], java.lang.StringBuffer, java.text.FieldPosition)
      • BadArgs

        public BadArgs​(java.util.ResourceBundle i18n,
                       java.lang.String s,
                       java.lang.Object... o)
        Create a Fault.
        Parameters:
        i18n - A resource bundle in which to find the detail message.
        s - The key for the detail message.
        o - An array of arguments to be formatted with the detail message by MessageFormat.format(java.lang.Object[], java.lang.StringBuffer, java.text.FieldPosition)