1 package org.ocltf.translation.query;
2
3 import org.ocltf.translation.TranslatorException;
4
5
6 /***
7 * Any unchecked exception that will be thrown during
8 * QueryTranslator processing.
9 */
10 public class QueryTranslatorException extends TranslatorException {
11
12 public QueryTranslatorException(Throwable th){
13 super(th);
14 }
15
16 public QueryTranslatorException(String msg) {
17 super(msg);
18 }
19
20 public QueryTranslatorException(String msg, Throwable th) {
21 super(msg, th);
22 }
23
24 }