FileDocCategorySizeDatePackage
IllegalFormatPrecisionException.javaAPI DocJava SE 5 API1028Fri Aug 26 14:57:22 BST 2005java.util

IllegalFormatPrecisionException

public class IllegalFormatPrecisionException extends IllegalFormatException
Unchecked exception thrown when the precision is a negative value other than -1, the conversion does not support a precision, or the value is otherwise unsupported.
version
1.4, 06/07/04
since
1.5

Fields Summary
private static final long
serialVersionUID
private int
p
Constructors Summary
public IllegalFormatPrecisionException(int p)
Constructs an instance of this class with the specified precision.

param
p The precision


                                
       
	this.p = p;
    
Methods Summary
public java.lang.StringgetMessage()

	return Integer.toString(p);
    
public intgetPrecision()
Returns the precision

return
The precision

	return p;