java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.newsclub.net.unix.KnownJavaBugIOException
- All Implemented Interfaces:
Serializable
Thrown when a known Java/JRE/JDK bug was encountered.
- Author:
- Christian Kohlschütter
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs anKnownJDKBugIOException
withnull
as its error detail message.KnownJavaBugIOException
(String message) Constructs anIOException
with the specified detail message.KnownJavaBugIOException
(String message, Throwable cause) Constructs anIOException
with the specified detail message and cause.KnownJavaBugIOException
(Throwable cause) Constructs anIOException
with the specified cause andnull
as its error detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
KnownJavaBugIOException
public KnownJavaBugIOException()Constructs anKnownJDKBugIOException
withnull
as its error detail message. -
KnownJavaBugIOException
-
KnownJavaBugIOException
Constructs anIOException
with the specified detail message.- Parameters:
message
- The message.
-
KnownJavaBugIOException
Constructs anIOException
with the specified cause andnull
as its error detail message.- Parameters:
cause
- The cause.
-