Class UnsupportedEncodingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.io.UnsupportedEncodingException
- All Implemented Interfaces:
Serializable
The Character Encoding is not supported.
Since: JDK1.1, CLDC 1.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an UnsupportedEncodingException without a detail message.UnsupportedEncodingException(java.lang.String s) Constructs an UnsupportedEncodingException with a detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
UnsupportedEncodingException
public UnsupportedEncodingException()Constructs an UnsupportedEncodingException without a detail message. -
UnsupportedEncodingException
public UnsupportedEncodingException(java.lang.String s) Constructs an UnsupportedEncodingException with a detail message. s - Describes the reason for the exception.
-