blob: fc97a44788941113329f3e248d6ef649ce6d7a97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package bjc.utils.parserutils;
import java.util.InputMismatchException;
public class UnknownPragmaException extends InputMismatchException {
public UnknownPragmaException(String m) {
super(m);
}
private static final long serialVersionUID = -4277573484926638662L;
}
|