FileDocCategorySizeDatePackage
MissingFormatWidthException.javaAPI DocJava SE 5 API1248Fri Aug 26 14:57:24 BST 2005java.util

MissingFormatWidthException

public class MissingFormatWidthException extends IllegalFormatException
Unchecked exception thrown when the format width is required.

Unless otherwise specified, passing a null argument to anyg method or constructor in this class will cause a {@link NullPointerException} to be thrown.

version
1.2, 12/19/03
since
1.5

Fields Summary
private static final long
serialVersionUID
private String
s
Constructors Summary
public MissingFormatWidthException(String s)
Constructs an instance of this class with the specified format specifier.

param
s The format specifier which does not have a width


                                         
       
	if (s == null)
	    throw new NullPointerException();
	this.s = s;
    
Methods Summary
public java.lang.StringgetFormatSpecifier()
Returns the format specifier which does not have a width.

return
The format specifier which does not have a width

	return s;
    
public java.lang.StringgetMessage()

	return s;