FileDocCategorySizeDatePackage
CharConversionException.javaAPI DocAndroid 1.5 API1613Wed May 06 22:41:04 BST 2009java.io

CharConversionException

public class CharConversionException extends IOException
The top level class for character conversion exceptions.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public CharConversionException()
Constructs a new {@code CharConversionException} with its stack trace filled in.

since
Android 1.0


                        
      
        super();
    
public CharConversionException(String detailMessage)
Constructs a new {@code CharConversionException} with its stack trace and detail message filled in.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary