diff options
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/util/pngj/PngjException.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/util/pngj/PngjException.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/jogl/classes/jogamp/opengl/util/pngj/PngjException.java b/src/jogl/classes/jogamp/opengl/util/pngj/PngjException.java new file mode 100644 index 000000000..4a45cb5bf --- /dev/null +++ b/src/jogl/classes/jogamp/opengl/util/pngj/PngjException.java @@ -0,0 +1,23 @@ +package jogamp.opengl.util.pngj;
+
+/**
+ * Generic exception
+ *
+ * @author Hernan J Gonzalez
+ *
+ */
+public class PngjException extends RuntimeException {
+ private static final long serialVersionUID = 1L;
+
+ public PngjException(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+ public PngjException(String message) {
+ super(message);
+ }
+
+ public PngjException(Throwable cause) {
+ super(cause);
+ }
+}
|