UnsupportedEncodingExceptionpublic class UnsupportedEncodingException extends IOException Signals that a requested character encoding is not available, either because
it is not included a specific Android system, or because the encoding name
is simply incorrect. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public UnsupportedEncodingException()Constructs a new {@code UnsupportedEncodingException} with its stack
trace filled in.
super();
| public UnsupportedEncodingException(String detailMessage)Constructs a new {@code UnsupportedEncodingException} with its stack
trace and detail message filled in.
super(detailMessage);
|
|