Most visited

Recently visited

Added in API level 1

CharConversionException

public class CharConversionException
extends IOException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.io.CharConversionException


Base class for character conversion exceptions.

Summary

Public constructors

CharConversionException()

This provides no detailed message.

CharConversionException(String s)

This provides a detailed message.

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

CharConversionException

Added in API level 1
CharConversionException ()

This provides no detailed message.

CharConversionException

Added in API level 1
CharConversionException (String s)

This provides a detailed message.

Parameters
s String: the detailed message associated with the exception.

Hooray!