java.io
Class UnsupportedEncodingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.io.UnsupportedEncodingException
-
public class UnsupportedEncodingException extends IOException
Thrown when a program asks for a particular character converter that is unavailable.
-
-
Constructor Summary
Constructors Constructor and Description UnsupportedEncodingException()
Constructs a newUnsupportedEncodingException
with its stack trace filled in.UnsupportedEncodingException(String detailMessage)
Constructs a newUnsupportedEncodingException
with its stack trace and detail message filled in.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, getStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
UnsupportedEncodingException
public UnsupportedEncodingException()
Constructs a newUnsupportedEncodingException
with its stack trace filled in.
-
UnsupportedEncodingException
public UnsupportedEncodingException(String detailMessage)
Constructs a newUnsupportedEncodingException
with its stack trace and detail message filled in.- Parameters:
detailMessage
- the detail message for this exception.
-
-