java.io
Class UnsupportedEncodingException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.io.IOException
              extended byjava.io.UnsupportedEncodingException
All Implemented Interfaces:
Serializable

public class UnsupportedEncodingException
extends IOException

This IO exception is thrown when a program asks for a particular character converter and it is not available.

See Also:
Serialized Form

Constructor Summary
UnsupportedEncodingException()
          Constructs a new instance of this class with its walkback filled in.
UnsupportedEncodingException(java.lang.String detailMessage)
          Constructs a new instance of this class with its walkback and message filled in.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnsupportedEncodingException

public UnsupportedEncodingException()
Constructs a new instance of this class with its walkback filled in.


UnsupportedEncodingException

public UnsupportedEncodingException(java.lang.String detailMessage)
Constructs a new instance of this class with its walkback and message filled in.

Parameters:
detailMessage - the detail message for the exception.