diff options
author | rodgersgb <[email protected]> | 2008-04-29 19:48:31 +0000 |
---|---|---|
committer | rodgersgb <[email protected]> | 2008-04-29 19:48:31 +0000 |
commit | 912c5125526d01862307d66cf5cd36c994283f74 (patch) | |
tree | 9dd4ff88175b05a850f99c1f0949e73291476b17 | |
parent | 5be04fcb829dc61a5dd8f874df499684c29580c6 (diff) |
Added a file remotely
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/joglutils/trunk@85 83d24430-9974-4f80-8418-2cc3294053b9
-rw-r--r-- | src/net/java/joglutils/model/ModelLoadException.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/net/java/joglutils/model/ModelLoadException.java b/src/net/java/joglutils/model/ModelLoadException.java new file mode 100644 index 0000000..5d8fdec --- /dev/null +++ b/src/net/java/joglutils/model/ModelLoadException.java @@ -0,0 +1,25 @@ +/*
+ * ModelLoadException.java
+ *
+ * Created on March 13, 2008, 9:48 PM
+ *
+ * To change this template, choose Tools | Template Manager
+ * and open the template in the editor.
+ */
+
+package net.java.joglutils.model;
+
+/**
+ *
+ * @author RodgersGB
+ */
+public class ModelLoadException extends Exception {
+
+ /** Creates a new instance of ModelLoadException */
+ public ModelLoadException() {
+ }
+
+ public ModelLoadException(String message) {
+ super(message);
+ }
+}
|