blob: e6d75b3c5a5113bf2eb45d3ceb0b6014051e7e2d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package ftbsc.lll.exception;
/**
* 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);
}
}
|