Package java.io
Class CharConversionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.io.CharConversionException
-
- All Implemented Interfaces:
Serializable
public class CharConversionException extends IOException
The top level class for character conversion exceptions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CharConversionException()Constructs a newCharConversionExceptionwith its stack trace filled in.CharConversionException(String detailMessage)Constructs a newCharConversionExceptionwith its stack trace and detail message filled in.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
CharConversionException
public CharConversionException()
Constructs a newCharConversionExceptionwith its stack trace filled in.
-
CharConversionException
public CharConversionException(String detailMessage)
Constructs a newCharConversionExceptionwith its stack trace and detail message filled in.- Parameters:
detailMessage- the detail message for this exception.
-
-