blob: 46c872f1187b6d90514367bff6e43e48715ce9f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package fr.dgac.ivy;
/**
* signals that an unrecoverrable Ivy exception has occured.
*
* @author Francois-Rzgis Colin
* @author Yannick Jestin
* @author <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
*
* changelog:
* 1.2.8:
* added a serialVersionUID to be compatible with jdk1.5
* 1.0.12 changed default access constructor to public access
*/
public class IvyException extends Exception {
static final long serialVersionUID=1L;
public IvyException(String s) { super(s); }
}
|