Class java.io.UTFDataFormatException
All Packages Class Hierarchy This Package Previous Next Index
Class java.io.UTFDataFormatException
Object
|
+----Throwable
|
+----Exception
|
+----IOException
|
+----java.io.UTFDataFormatException
- public class UTFDataFormatException
- extends IOException
Signals that a malformed UTF-8 string has been read in a data
input stream or by any class that implements the data input
interface. See the writeUTF method for the format in
which UTF-8 strings are read and written.
- Version:
- 1.4, 07/01/98
- Author:
- Frank Yellin
- Since:
- JDK1.0
- See Also:
- DataInput, readUTF(java.io.DataInput), IOException
-
java.io.UTFDataFormatException()
- Constructs a
UTFDataFormatException with no detail
message.
-
java.io.UTFDataFormatException(String)
- Constructs a
UTFDataFormatException with the
specified detail message.
UTFDataFormatException
public UTFDataFormatException()
- Constructs a
UTFDataFormatException with no detail
message.
- Since:
- JDK1.0
UTFDataFormatException
public UTFDataFormatException(String s)
- Constructs a
UTFDataFormatException with the
specified detail message.
- Parameters:
- s - the detail message.
- Since:
- JDK1.0
All Packages Class Hierarchy This Package Previous Next Index