blob: e467771ad83a21e3e25903443f87adb356abc309 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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>
*
*/
public class IvyException extends Exception {
IvyException(String s) { super(s); }
}
|