View Javadoc

1   package uk.ac.ebi.intenz.webapp.exceptions;
2   
3   /**
4    * If a query is invalid this exception will be thrown.
5    *
6    * A query is invalid if it makes incorrect use of reserved characters such as '{', '}' or their surrogate '"'.
7    *
8    * TODO: Extend for other reserved characters as well.
9    *
10   * @author Michael Darsow
11   * @version 2.0.0 - 27-February-2004
12   */
13  public class QueryException extends Exception {
14    public QueryException() {
15    }
16  
17    public QueryException(String message) {
18      super(message);
19    }
20  }