FileDocCategorySizeDatePackage
UnknownFormatFlagsException.javaAPI DocAndroid 1.5 API1951Wed May 06 22:41:04 BST 2009java.util

UnknownFormatFlagsException

public class UnknownFormatFlagsException extends IllegalFormatException
An {@code UnknownFormatFlagsException} will be thrown if there is an unknown flag.
see
java.lang.RuntimeException
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
private String
flags
Constructors Summary
public UnknownFormatFlagsException(String f)
Constructs a new {@code UnknownFormatFlagsException} with the specified flags.

param
f the specified flags.


                                  
       
        if (null == f) {
            throw new NullPointerException();
        }
        flags = f;
    
Methods Summary
public java.lang.StringgetFlags()
Returns the flags associated with the exception.

return
the flags associated with the exception.

        return flags;
    
public java.lang.StringgetMessage()
Returns the message associated with the exception.

return
the message associated with the exception.

        return Msg.getString("K034a", flags);