FileDocCategorySizeDatePackage
UnsupportedEncodingException.javaAPI DocJ2ME CLDC 1.1753Wed Feb 05 15:55:58 GMT 2003java.io

UnsupportedEncodingException

public class UnsupportedEncodingException extends IOException
The Character Encoding is not supported.
author
Asmus Freytag
version
12/17/01 (CLDC 1.1)
since
JDK1.1, CLDC 1.0

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