JAL-3026 srcjar files for VARNA and log4j
[jalview.git] / srcjar / fr / orsay / lri / varna / exceptions / ExceptionDrawingAlgorithm.java
1 package fr.orsay.lri.varna.exceptions;
2
3 /**
4  * Exceptions of this class, or of a derived class,
5  * are thrown by the RNA drawing algorithms.
6  * 
7  * @author Raphael Champeimont
8  */
9 public class ExceptionDrawingAlgorithm extends Exception {
10         private static final long serialVersionUID = -8705033963886770829L;
11
12         public ExceptionDrawingAlgorithm(String message) {
13                 super(message);
14         }
15         
16         public ExceptionDrawingAlgorithm() {
17         }
18 }