JAL-3032 adds Java 8 functionality (2/2)
[jalview.git] / src2 / fr / orsay / lri / varna / exceptions / ExceptionXmlLoading.java
diff --git a/src2/fr/orsay/lri/varna/exceptions/ExceptionXmlLoading.java b/src2/fr/orsay/lri/varna/exceptions/ExceptionXmlLoading.java
new file mode 100644 (file)
index 0000000..1efaf50
--- /dev/null
@@ -0,0 +1,17 @@
+package fr.orsay.lri.varna.exceptions;
+
+/**
+ * Thrown by algorithms that load data from XML when they fail.
+ * 
+ * @author Raphael Champeimont
+ */
+public class ExceptionXmlLoading extends Exception {
+       private static final long serialVersionUID = -6267373620339074008L;
+
+       public ExceptionXmlLoading(String message) {
+               super(message);
+       }
+       
+       public ExceptionXmlLoading() {
+       }
+}
\ No newline at end of file