Package java.io
Class UnsupportedEncodingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.io.UnsupportedEncodingException
-
- All Implemented Interfaces:
Serializable
public class UnsupportedEncodingException extends IOException
Thrown when a program asks for a particular character converter that is unavailable.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnsupportedEncodingException()Constructs a newUnsupportedEncodingExceptionwith its stack trace filled in.UnsupportedEncodingException(String detailMessage)Constructs a newUnsupportedEncodingExceptionwith its stack trace and detail message filled in.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnsupportedEncodingException
public UnsupportedEncodingException()
Constructs a newUnsupportedEncodingExceptionwith its stack trace filled in.
-
UnsupportedEncodingException
public UnsupportedEncodingException(String detailMessage)
Constructs a newUnsupportedEncodingExceptionwith its stack trace and detail message filled in.- Parameters:
detailMessage- the detail message for this exception.
-
-