java.util
Class IllegalFormatPrecisionException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byjava.lang.IllegalArgumentException
                  extended byjava.util.IllegalFormatException
                      extended byjava.util.IllegalFormatPrecisionException
All Implemented Interfaces:
Serializable

public class IllegalFormatPrecisionException
extends IllegalFormatException

The unchecked exception will be thrown out when the precision is a negative other than -1, or the conversion does not support a precision or other cases when the precision is not supported.

See Also:
Serialized Form

Constructor Summary
IllegalFormatPrecisionException(int p)
          Constructs a IllegalFormatPrecisionException with specified precision.
 
Method Summary
 java.lang.String getMessage()
          Returns the message of the exception.
 int getPrecision()
          Returns the precision associated with the exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IllegalFormatPrecisionException

public IllegalFormatPrecisionException(int p)
Constructs a IllegalFormatPrecisionException with specified precision.

Parameters:
p - The precision.
Method Detail

getPrecision

public int getPrecision()
Returns the precision associated with the exception.

Returns:
the precision.

getMessage

public java.lang.String getMessage()
Returns the message of the exception.

Overrides:
getMessage in class Throwable
Returns:
The message of the exception.