summaryrefslogtreecommitdiff
path: root/JPratt/src/main/java/com/ashardalon/pratt/tokens/ExpectionNotMet.java
blob: b7002037b61594187d53308ec4cc1dec82c4109e (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 com.ashardalon.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);
	}
}