blob: 7569d958c7cd95275fab1877f91df8b2e2ff6a95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
package bjc.utils.cli.fds;
/**
* Exception thrown when something goes wrong with FDS.
*
* @author bjculkin
*
*/
public class FDSException extends Exception {
/**
* Create a new FDS exception with a message and a cause.
*
* @param message
* The message for the exception.
*
* @param cause
* The cause of the exception.
*/
public FDSException(String message, Throwable cause) {
super(message, cause);
}
/**
* Create a new FDS exception with a message.
*
* @param message
* The message for the exception.
*/
public FDSException(String message) {
super(message);
}
}
|