|
jaulib v1.4.0-2-g788cf73
Jau Support Library (C++, Java, ..)
|
Unchecked exception propagating an InterruptedException where handling of the latter is not desired.
More...
Public Member Functions | |
| InterruptedRuntimeException (final String message, final InterruptedException cause) | |
Constructor attempts to wrap the given InterruptedException cause into a SourcedInterruptedException. | |
| InterruptedRuntimeException (final InterruptedException cause) | |
Constructor attempts to wrap the given InterruptedException cause into a SourcedInterruptedException. | |
| InterruptedException | getCause () |
Returns the propagated InterruptedException, i.e. | |
Unchecked exception propagating an InterruptedException where handling of the latter is not desired.
InterruptedRuntimeException may be thrown either by waiting for any Runnable to be completed, or during its execution.
The propagated InterruptedException may be of type SourcedInterruptedException.
Definition at line 43 of file InterruptedRuntimeException.java.
| org.jau.lang.InterruptedRuntimeException.InterruptedRuntimeException | ( | final String | message, |
| final InterruptedException | cause ) |
Constructor attempts to wrap the given InterruptedException cause into a SourcedInterruptedException.
| message | the message of this exception |
| cause | the propagated InterruptedException |
Definition at line 52 of file InterruptedRuntimeException.java.
| org.jau.lang.InterruptedRuntimeException.InterruptedRuntimeException | ( | final InterruptedException | cause | ) |
Constructor attempts to wrap the given InterruptedException cause into a SourcedInterruptedException.
| cause | the propagated InterruptedException |
Definition at line 62 of file InterruptedRuntimeException.java.
| InterruptedException org.jau.lang.InterruptedRuntimeException.getCause | ( | ) |
Returns the propagated InterruptedException, i.e.
the cause of this exception.
Definition at line 73 of file InterruptedRuntimeException.java.