FileDocCategorySizeDatePackage
UnsupportedEncodingException.javaAPI DocAndroid 1.5 API1760Wed May 06 22:41:04 BST 2009java.io

UnsupportedEncodingException

public class UnsupportedEncodingException extends IOException
Signals that a requested character encoding is not available, either because it is not included a specific Android system, or because the encoding name is simply incorrect.
since
Android 1.0

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

since
Android 1.0


                        
      
        super();
    
public UnsupportedEncodingException(String detailMessage)
Constructs a new {@code UnsupportedEncodingException} 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