blob: de739ad24eece2ebeaec662d8c4ca3acd00d1b06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package fr.dgac.ivy;
/**
* signals that an unrecoverrable Ivy exception has occured.
*
* @author François-Régis Colin
* @author Yannick Jestin
* @author <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
*
* changelog:
* 1.0.12 changed default access constructor to public access
*/
public class IvyException extends Exception {
public IvyException(String s) { super(s); }
}
|