Java 11 integration;
[jalview.git] / src2 / fr / orsay / lri / varna / exceptions / ExceptionXMLGeneration.java
1 package fr.orsay.lri.varna.exceptions;
2
3 /**
4  * Thrown by XML-generating algorithms when they fail.
5  * 
6  * @author Raphael Champeimont
7  */
8 public class ExceptionXMLGeneration extends Exception {
9         private static final long serialVersionUID = 8867910395701431387L;
10
11         public ExceptionXMLGeneration(String message) {
12                 super(message);
13         }
14         
15         public ExceptionXMLGeneration() {
16         }
17 }