java.io.UnsupportedEncodingException
java.io.IOException
None
None
New as of JDK 1.1
An UnsupportedEncodingException is thrown when a character encoding scheme is not available. It can be thrown by methods of classes in java.io and other packages.
public class java.io.UnsupportedEncodingException extends java.io.IOException { // Constructors public UnsupportedEncodingException(); public UnsupportedEncodingException(String s); }
This constructor creates an UnsupportedEncodingException with no detail message.
The detail message.
This constructor creates an UnsupportedEncodingException with the specified detail message.
Method |
Inherited From |
Method |
Inherited From |
---|---|---|---|
clone() |
Object |
equals(Object) |
Object |
fillInStackTrace() |
Throwable |
finalize() |
Object |
getClass() |
Object |
getLocalizedMessage() |
Throwable |
getMessage() |
Throwable |
hashCode() |
Object |
notify() |
Object |
notifyAll() |
Object |
printStackTrace() |
Throwable |
printStackTrace(PrintStream) |
Throwable |
printStackTrace(PrintWriter) |
Throwable |
toString() |
Object |
wait() |
Object |
wait(long) |
Object |
wait(long, int) |
Object |
Exception, IOException, Throwable