UTFDataFormatExceptionpublic class UTFDataFormatException extends IOException Signals that an incorrectly encoded UTF-8 string has been encountered, most
likely while reading some {@link DataInputStream}. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public UTFDataFormatException()Constructs a new {@code UTFDataFormatException} with its stack trace
filled in.
super();
| public UTFDataFormatException(String detailMessage)Constructs a new {@code UTFDataFormatException} with its stack trace and
detail message filled in.
super(detailMessage);
|
|