FileDocCategorySizeDatePackage
UnsupportedEncodingException.javaAPI DocphoneME MR2 API (J2ME)1641Wed May 02 17:59:54 BST 2007java.io

UnsupportedEncodingException

public class UnsupportedEncodingException extends IOException
The Character Encoding is not supported.
version
1.12, 12/04/99 (CLDC 1.0, Spring 2000)
since
JDK1.1

Fields Summary
Constructors Summary
public UnsupportedEncodingException()
Constructs an UnsupportedEncodingException without a detail message.

        super();
    
public UnsupportedEncodingException(String s)
Constructs an UnsupportedEncodingException with a detail message.

param
s Describes the reason for the exception.

        super(s);
    
Methods Summary