1 package simpledb.parse;
2
3 /**
4 * A runtime exception indicating that the submitted query
5 * has incorrect syntax.
6 * @author Edward Sciore
7 */
8 @SuppressWarnings("serial")
9 public class BadSyntaxException extends RuntimeException {
10 public BadSyntaxException() {
11 }
12 }