FileDocCategorySizeDatePackage
UnsupportedEncodingException.javaAPI DocJava SE 5 API789Fri Aug 26 14:57:00 BST 2005java.io

UnsupportedEncodingException

public class UnsupportedEncodingException extends IOException
The Character Encoding is not supported.
author
Asmus Freytag
version
1.16, 12/19/03
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