public class IOException extends Exception
InputStream
,
OutputStream
Constructor and Description |
---|
IOException()
Constructs an
IOException with null
as its error detail message. |
IOException(String s)
Constructs an
IOException with the specified detail
message. |
public IOException()
IOException
with null
as its error detail message.public IOException(String s)
IOException
with the specified detail
message. The error message string s
can later be
retrieved by the Throwable.getMessage()
method of class java.lang.Throwable
.s
- the detail message.Copyright (c) 1990, 2012, Oracle and/or its affiliates. All rights reserved.