summaryrefslogtreecommitdiff
path: root/jeu-test/Lemmini/0.84/src/Game/ResourceException.java
diff options
context:
space:
mode:
Diffstat (limited to 'jeu-test/Lemmini/0.84/src/Game/ResourceException.java')
-rw-r--r--jeu-test/Lemmini/0.84/src/Game/ResourceException.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/jeu-test/Lemmini/0.84/src/Game/ResourceException.java b/jeu-test/Lemmini/0.84/src/Game/ResourceException.java
new file mode 100644
index 0000000..57d00c7
--- /dev/null
+++ b/jeu-test/Lemmini/0.84/src/Game/ResourceException.java
@@ -0,0 +1,41 @@
+package Game;
+
+/*
+ * Copyright 2009 Volker Oth
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Generic exception class for problems during resource extraction.
+ *
+ * @author Volker Oth
+ */
+public class ResourceException extends Exception {
+ private final static long serialVersionUID = 0x000000001;
+
+ /**
+ * Constructor.
+ */
+ public ResourceException() {
+ super();
+ }
+
+ /**
+ * Constructor.
+ * @param s Exception string
+ */
+ public ResourceException(final String s) {
+ super(s);
+ }
+}