diff options
author | Sven Gothel <[email protected]> | 2015-09-15 05:12:14 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-09-15 05:12:14 +0200 |
commit | 1c4e2d3ea379fe6578dfb84e10f22729b71b1ae5 (patch) | |
tree | 6bcd646a474bcf0c79043fe2520ccaa51a57eea1 /src/java/com/jogamp/common/util/SourcedInterruptedException.java | |
parent | 2b97ed6d238a0db1e2cf7bdf15349e90eaaa8dfc (diff) |
Bug 1213: Refine changes .. comments and API
- Use InterruptSource.Thread.create(..),
while reducing InterruptSource.Thread ctors to 3 variants.
- Use InterruptSource.Thread instead of java.lang.Thread where possible
- Use SourcedInterruptedException where possible
- SingletonInstanceServerSocket: start(), stop() and run()
- Persistent-Wait and Cancelable
- Add @since 2.3.2
Diffstat (limited to 'src/java/com/jogamp/common/util/SourcedInterruptedException.java')
-rw-r--r-- | src/java/com/jogamp/common/util/SourcedInterruptedException.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/java/com/jogamp/common/util/SourcedInterruptedException.java b/src/java/com/jogamp/common/util/SourcedInterruptedException.java index 7646652..49dcd86 100644 --- a/src/java/com/jogamp/common/util/SourcedInterruptedException.java +++ b/src/java/com/jogamp/common/util/SourcedInterruptedException.java @@ -39,6 +39,7 @@ import com.jogamp.common.ExceptionUtils.CustomStackTrace; * This exception may be created directly where {@link #getCause()} returns {@code null}, * or by propagating an existing {@link InterruptedException} as returned by {@link #getCause()}. * </p> + * @since 2.3.2 */ @SuppressWarnings("serial") public class SourcedInterruptedException extends InterruptedException implements CustomStackTrace { |