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