FileDocCategorySizeDatePackage
CharConversionException.javaAPI DocJava SE 5 API728Fri Aug 26 14:56:58 BST 2005java.io

CharConversionException

public class CharConversionException extends IOException
Base class for character conversion exceptions.
author
Asmus Freytag
version
1.15, 12/19/03
since
JDK1.1

Fields Summary
Constructors Summary
public CharConversionException()
This provides no detailed message.

    
public CharConversionException(String s)
This provides a detailed message.

param
s the detailed message associated with the exception.

        super(s);
    
Methods Summary