blob: 5e7401c8bc2299500cef39761c319a9a2cfa86f5 (
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);
}
}
|