diff options
author | Sven Gothel <[email protected]> | 2023-05-23 01:37:31 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-05-23 01:37:31 +0200 |
commit | 66e79a41f38f5694f953816f1a85a02cee71eb16 (patch) | |
tree | 80021bc8d3e039c068c763ef37ae518abc528a69 | |
parent | 39a32fd56de313c31bd197ee6022288e97f9729a (diff) |
ALException: Suppress serial warning
-rwxr-xr-x | src/java/com/jogamp/openal/ALException.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/java/com/jogamp/openal/ALException.java b/src/java/com/jogamp/openal/ALException.java index 228faac..e57ff4b 100755 --- a/src/java/com/jogamp/openal/ALException.java +++ b/src/java/com/jogamp/openal/ALException.java @@ -36,6 +36,7 @@ package com.jogamp.openal; /** A generic exception for OpenAL errors used throughout the binding as a substitute for {@link RuntimeException}. */ +@SuppressWarnings("serial") public class ALException extends RuntimeException { /** Constructs an ALException object. */ public ALException() { |