blob: 2bd45e2eb65d29a59df43b16408ad1ba4a5f0a44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package bjc.pratt.tokens;
import bjc.utils.parserutils.ParserException;
/**
* The exception thrown when an expectation fails.
*
* @author EVE
*
*/
public class ExpectionNotMet extends ParserException {
private static final long serialVersionUID = 4299299480127680805L;
/**
* Create a new exception with the specified message.
*
* @param msg
* The message of the exception.
*/
public ExpectionNotMet(final String msg) {
super(msg);
}
}
|