blob: d8809dd5b57f80e94a5c3a5e014e3fb9859468fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package ftbsc.lll.exceptions;
/**
* Thrown when the injection of a patch fails.
*/
public class InjectionException extends RuntimeException {
public InjectionException(String message) {
super(message);
}
public InjectionException(String message, Throwable cause) {
super(message, cause);
}
public InjectionException(Throwable cause) {
super(cause);
}
}
|