diff options
Diffstat (limited to 'src/net/java/joglutils/jogltext/JogltextException.java')
-rw-r--r-- | src/net/java/joglutils/jogltext/JogltextException.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/net/java/joglutils/jogltext/JogltextException.java b/src/net/java/joglutils/jogltext/JogltextException.java new file mode 100644 index 0000000..34a160f --- /dev/null +++ b/src/net/java/joglutils/jogltext/JogltextException.java @@ -0,0 +1,27 @@ +/*
+ * jogltextException.java
+ *
+ * Created on December 20, 2006, 8:46 AM
+ *
+ * To change this template, choose Tools | Template Manager
+ * and open the template in the editor.
+ */
+
+package net.java.joglutils.jogltext;
+
+/**
+ *
+ * @author Erik J. Tollerud
+ */
+public class JogltextException extends RuntimeException{
+
+ /** Creates a new instance of jogltextException */
+ public JogltextException() {
+ super();
+ }
+
+ public JogltextException(String str) {
+ super(str);
+ }
+
+}
|