Most visited

Recently visited

Added in API level 1

UnmappableCharacterException

public class UnmappableCharacterException
extends CharacterCodingException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.nio.charset.CharacterCodingException
           ↳ java.nio.charset.UnmappableCharacterException


Checked exception thrown when an input character (or byte) sequence is valid but cannot be mapped to an output byte (or character) sequence.

Summary

Public constructors

UnmappableCharacterException(int inputLength)

Public methods

int getInputLength()
String getMessage()

Returns the detail message string of this throwable.

Inherited methods

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

Public constructors

UnmappableCharacterException

Added in API level 1
UnmappableCharacterException (int inputLength)

Parameters
inputLength int

Public methods

getInputLength

Added in API level 1
int getInputLength ()

Returns
int

getMessage

Added in API level 1
String getMessage ()

Returns the detail message string of this throwable.

Returns
String the detail message string of this Throwable instance (which may be null).

Hooray!