public class

UnsupportedEncodingException

extends IOException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.io.UnsupportedEncodingException

Class Overview

Signals that a requested character encoding is not available, either because it is not included a specific Android system, or because the encoding name is simply incorrect.

Summary

Public Constructors
UnsupportedEncodingException()
Constructs a new UnsupportedEncodingException with its stack trace filled in.
UnsupportedEncodingException(String detailMessage)
Constructs a new UnsupportedEncodingException with its stack trace and detail message filled in.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public UnsupportedEncodingException ()

Constructs a new UnsupportedEncodingException with its stack trace filled in.

public UnsupportedEncodingException (String detailMessage)

Constructs a new UnsupportedEncodingException with its stack trace and detail message filled in.

Parameters
detailMessage the detail message for this exception.