< prev index next >

src/java.base/share/classes/java/util/IllegalFormatFlagsException.java

Print this page




  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.util;
  27 
  28 /**
  29  * Unchecked exception thrown when an illegal combination flags is given.
  30  *
  31  * <p> Unless otherwise specified, passing a {@code null} argument to any
  32  * method or constructor in this class will cause a {@link
  33  * NullPointerException} to be thrown.
  34  *
  35  * @since 1.5
  36  */
  37 public class IllegalFormatFlagsException extends IllegalFormatException {
  38 

  39     private static final long serialVersionUID = 790824L;
  40 
  41     private String flags;
  42 
  43     /**
  44      * Constructs an instance of this class with the specified flags.
  45      *
  46      * @param  f
  47      *         The set of format flags which contain an illegal combination
  48      */
  49     public IllegalFormatFlagsException(String f) {
  50         if (f == null)
  51             throw new NullPointerException();
  52         this.flags = f;
  53     }
  54 
  55     /**
  56      * Returns the set of flags which contains an illegal combination.
  57      *
  58      * @return  The flags


  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.util;
  27 
  28 /**
  29  * Unchecked exception thrown when an illegal combination flags is given.
  30  *
  31  * <p> Unless otherwise specified, passing a {@code null} argument to any
  32  * method or constructor in this class will cause a {@link
  33  * NullPointerException} to be thrown.
  34  *
  35  * @since 1.5
  36  */
  37 public class IllegalFormatFlagsException extends IllegalFormatException {
  38 
  39     @java.io.Serial
  40     private static final long serialVersionUID = 790824L;
  41 
  42     private String flags;
  43 
  44     /**
  45      * Constructs an instance of this class with the specified flags.
  46      *
  47      * @param  f
  48      *         The set of format flags which contain an illegal combination
  49      */
  50     public IllegalFormatFlagsException(String f) {
  51         if (f == null)
  52             throw new NullPointerException();
  53         this.flags = f;
  54     }
  55 
  56     /**
  57      * Returns the set of flags which contains an illegal combination.
  58      *
  59      * @return  The flags
< prev index next >