Merge branch 'Jalview-JS/develop' into develop
[jalview.git] / srcjar / fr / orsay / lri / varna / exceptions / ExceptionDrawingAlgorithm.java
diff --git a/srcjar/fr/orsay/lri/varna/exceptions/ExceptionDrawingAlgorithm.java b/srcjar/fr/orsay/lri/varna/exceptions/ExceptionDrawingAlgorithm.java
new file mode 100644 (file)
index 0000000..6ed626e
--- /dev/null
@@ -0,0 +1,18 @@
+package fr.orsay.lri.varna.exceptions;
+
+/**
+ * Exceptions of this class, or of a derived class,
+ * are thrown by the RNA drawing algorithms.
+ * 
+ * @author Raphael Champeimont
+ */
+public class ExceptionDrawingAlgorithm extends Exception {
+       private static final long serialVersionUID = -8705033963886770829L;
+
+       public ExceptionDrawingAlgorithm(String message) {
+               super(message);
+       }
+       
+       public ExceptionDrawingAlgorithm() {
+       }
+}