FileDocCategorySizeDatePackage
UnknownFormatConversionException.javaAPI DocAndroid 1.5 API1892Wed May 06 22:41:04 BST 2009java.util

UnknownFormatConversionException

public class UnknownFormatConversionException extends IllegalFormatException
An {@code UnknownFormatConversionException} will be thrown if the format conversion is unknown.
see
java.lang.RuntimeException
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
private String
s
Constructors Summary
public UnknownFormatConversionException(String s)
Constructs an {@code UnknownFormatConversionException} with the unknown format conversion.

param
s the unknown format conversion.


                                    
       
        this.s = s;
    
Methods Summary
public java.lang.StringgetConversion()
Returns the conversion associated with the exception.

return
the conversion associated with the exception.

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

return
the message of the exception.

        return Msg.getString("K0349", s);