FileDocCategorySizeDatePackage
MissingFormatWidthException.javaAPI DocAndroid 1.5 API1920Wed May 06 22:41:04 BST 2009java.util

MissingFormatWidthException

public class MissingFormatWidthException extends IllegalFormatException
A {@code MissingFormatWidthException} will be thrown if the format width is missing but is required.
see
java.lang.RuntimeException
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
private String
s
Constructors Summary
public MissingFormatWidthException(String s)
Constructs a new {@code MissingFormatWidthException} with the specified format specifier.

param
s the specified format specifier.


                                    
       
        if (null == s) {
            throw new NullPointerException();
        }
        this.s = s;
    
Methods Summary
public java.lang.StringgetFormatSpecifier()
Returns the format specifier associated with the exception.

return
the format specifier associated with the exception.

        return s;
    
public java.lang.StringgetMessage()
Returns the message of the exception.

return
the message of the exception.

        return s;