summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/exceptions/UnknownPragmaException.java
blob: 54ae47d5283170692af6c6c3c87569b54ac803e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package bjc.utils.exceptions;

import java.util.InputMismatchException;

/**
 * Represents a error from encountering a unknown pragma
 * 
 * @author ben
 *
 */
public class UnknownPragmaException extends InputMismatchException {
	/**
	 * Version id for serialization
	 */
	private static final long serialVersionUID = -4277573484926638662L;

	/**
	 * Create a new exception with the given cause
	 * 
	 * @param m
	 *            The cause for throwing this exception
	 */
	public UnknownPragmaException(String m) {
		super(m);
	}

}