|
GlueGen v2.6.0-rc-20250712
GlueGen, Native Binding Generator for Java (public API).
|
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. More... | |
| InterruptedRuntimeException (final InterruptedException cause) | |
Constructor attempts to wrap the given InterruptedException cause into a SourcedInterruptedException. More... | |
| InterruptedException | getCause () |
Returns the propagated InterruptedException, i.e. More... | |
Public Member Functions inherited from com.jogamp.common.JogampRuntimeException | |
| JogampRuntimeException () | |
| Constructs a JogampRuntimeException object. More... | |
| JogampRuntimeException (final String message) | |
| Constructs a JogampRuntimeException object with the specified detail message. More... | |
| JogampRuntimeException (final String message, final Throwable cause) | |
| Constructs a JogampRuntimeException object with the specified detail message and root cause. More... | |
| JogampRuntimeException (final Throwable cause) | |
| Constructs a JogampRuntimeException object with the specified root cause. More... | |
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 47 of file InterruptedRuntimeException.java.
| com.jogamp.common.util.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 56 of file InterruptedRuntimeException.java.
| com.jogamp.common.util.InterruptedRuntimeException.InterruptedRuntimeException | ( | final InterruptedException | cause | ) |
Constructor attempts to wrap the given InterruptedException cause into a SourcedInterruptedException.
| cause | the propagated InterruptedException |
Definition at line 66 of file InterruptedRuntimeException.java.
| InterruptedException com.jogamp.common.util.InterruptedRuntimeException.getCause | ( | ) |
Returns the propagated InterruptedException, i.e.
the cause of this exception.
Definition at line 77 of file InterruptedRuntimeException.java.