java.util
Class DuplicateFormatFlagsException

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable 
      extended by java.lang.Exception sample code for java.lang.Exception definition code for java.lang.Exception 
          extended by java.lang.RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException 
              extended by java.lang.IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException 
                  extended by java.util.IllegalFormatException sample code for java.util.IllegalFormatException definition code for java.util.IllegalFormatException 
                      extended by java.util.DuplicateFormatFlagsException
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable

public class DuplicateFormatFlagsException
extends IllegalFormatException sample code for java.util.IllegalFormatException definition code for java.util.IllegalFormatException

Unchecked exception thrown when duplicate flags are provided in the format specifier.

Unless otherwise specified, passing a null argument to any method or constructor in this class will cause a NullPointerException sample code for java.lang.NullPointerException definition code for java.lang.NullPointerException to be thrown.

Since:
1.5
See Also:
Serialized Form

Constructor Summary
DuplicateFormatFlagsException sample code for java.util.DuplicateFormatFlagsException.DuplicateFormatFlagsException(java.lang.String) definition code for java.util.DuplicateFormatFlagsException.DuplicateFormatFlagsException(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  f)
          Constructs an instance of this class with the specified flags.
 
Method Summary
 String sample code for java.lang.String definition code for java.lang.String getFlags sample code for java.util.DuplicateFormatFlagsException.getFlags() definition code for java.util.DuplicateFormatFlagsException.getFlags() ()
          Returns the set of flags which contains a duplicate flag.
 String sample code for java.lang.String definition code for java.lang.String getMessage sample code for java.util.DuplicateFormatFlagsException.getMessage() definition code for java.util.DuplicateFormatFlagsException.getMessage() ()
          Returns the detail message string of this throwable.
 
Methods inherited from class java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
fillInStackTrace sample code for java.lang.Throwable.fillInStackTrace() definition code for java.lang.Throwable.fillInStackTrace() , getCause sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() , getLocalizedMessage sample code for java.lang.Throwable.getLocalizedMessage() definition code for java.lang.Throwable.getLocalizedMessage() , getStackTrace sample code for java.lang.Throwable.getStackTrace() definition code for java.lang.Throwable.getStackTrace() , initCause sample code for java.lang.Throwable.initCause(java.lang.Throwable) definition code for java.lang.Throwable.initCause(java.lang.Throwable) , printStackTrace sample code for java.lang.Throwable.printStackTrace() definition code for java.lang.Throwable.printStackTrace() , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintStream) definition code for java.lang.Throwable.printStackTrace(java.io.PrintStream) , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) definition code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) , setStackTrace sample code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) definition code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) , toString sample code for java.lang.Throwable.toString() definition code for java.lang.Throwable.toString()
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

DuplicateFormatFlagsException sample code for java.util.DuplicateFormatFlagsException(java.lang.String) definition code for java.util.DuplicateFormatFlagsException(java.lang.String)

public DuplicateFormatFlagsException(String sample code for java.lang.String definition code for java.lang.String  f)
Constructs an instance of this class with the specified flags.

Parameters:
f - The set of format flags which contain a duplicate flag.
Method Detail

getFlags sample code for java.util.DuplicateFormatFlagsException.getFlags() definition code for java.util.DuplicateFormatFlagsException.getFlags()

public String sample code for java.lang.String definition code for java.lang.String  getFlags()
Returns the set of flags which contains a duplicate flag.

Returns:
The flags

getMessage sample code for java.util.DuplicateFormatFlagsException.getMessage() definition code for java.util.DuplicateFormatFlagsException.getMessage()

public String sample code for java.lang.String definition code for java.lang.String  getMessage()
Description copied from class: Throwable sample code for java.lang.Throwable.getMessage() definition code for java.lang.Throwable.getMessage()
Returns the detail message string of this throwable.

Overrides:
getMessage sample code for java.lang.Throwable.getMessage() definition code for java.lang.Throwable.getMessage() in class Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
Returns:
the detail message string of this Throwable instance (which may be null).