blob: d84fefd9e995d2f5e9c5de7d8ed11387ed6dd6de (
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 failing to find a pattern.
*/
public class PatternNotFoundException extends RuntimeException {
public PatternNotFoundException(String message) {
super(message);
}
public PatternNotFoundException(String message, Throwable cause) {
super(message, cause);
}
public PatternNotFoundException(Throwable cause) {
super(cause);
}
}
|