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

IllegalFormatWidthException

public class IllegalFormatWidthException extends IllegalFormatException
Unchecked exception thrown when the format width is a negative value other than -1 or is otherwise unsupported.
version
1.4, 06/07/04
since
1.5

Fields Summary
private static final long
serialVersionUID
private int
w
Constructors Summary
public IllegalFormatWidthException(int w)
Constructs an instance of this class with the specified width.

param
w The width


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

	return Integer.toString(w);
    
public intgetWidth()
Returns the width

return
The width

	return w;