blob: 05b71d32be71b24a69e459c989d1afb639039738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package bjc.rgens.parser;
/**
* Exception for error executing a pragma
*
* @author ben
*
*/
public class PragmaErrorException extends RuntimeException {
private static final long serialVersionUID = 7245421182038076899L;
/**
* Create a new exception with the given message
*
* @param message
* The message of the exception
*/
public PragmaErrorException(String message) {
super(message);
}
}
|