Module org.glassfish.corba.rmic
Package org.glassfish.rmic.tools.java
Class RmicUncheckedIOException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.glassfish.rmic.tools.java.RmicUncheckedIOException
- All Implemented Interfaces:
Serializable
Wraps an
IOException with an unchecked exception. Copied from the JDK's UncheckedIOException, as it was only
added in JDK 8. Once the orb switches to JDK8 as a minimum, this can be replaced with the JDK class.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an instance of this class.RmicUncheckedIOException(String message, IOException cause) Constructs an instance of this class. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RmicUncheckedIOException
Constructs an instance of this class.- Parameters:
message- the detail message, can be nullcause- theIOException- Throws:
NullPointerException- if the cause isnull
-
RmicUncheckedIOException
Constructs an instance of this class.- Parameters:
cause- theIOException- Throws:
NullPointerException- if the cause isnull
-
-
Method Details