JAL-3026 srcjar files for VARNA and log4j
[jalview.git] / srcjar / fr / orsay / lri / varna / exceptions / ExceptionXMLGeneration.java
diff --git a/srcjar/fr/orsay/lri/varna/exceptions/ExceptionXMLGeneration.java b/srcjar/fr/orsay/lri/varna/exceptions/ExceptionXMLGeneration.java
new file mode 100644 (file)
index 0000000..ac07e6f
--- /dev/null
@@ -0,0 +1,17 @@
+package fr.orsay.lri.varna.exceptions;
+
+/**
+ * Thrown by XML-generating algorithms when they fail.
+ * 
+ * @author Raphael Champeimont
+ */
+public class ExceptionXMLGeneration extends Exception {
+       private static final long serialVersionUID = 8867910395701431387L;
+
+       public ExceptionXMLGeneration(String message) {
+               super(message);
+       }
+       
+       public ExceptionXMLGeneration() {
+       }
+}