1 28 29 package com.caucho.amber.query; 30 31 import com.caucho.amber.AmberException; 32 import com.caucho.util.CompileException; 33 34 37 public class QueryParseException extends AmberException 38 implements CompileException { 39 public QueryParseException() 40 { 41 } 42 43 public QueryParseException(String msg) 44 { 45 super(msg); 46 } 47 48 public QueryParseException(String msg, Throwable cause) 49 { 50 super(msg, cause); 51 } 52 53 public QueryParseException(Throwable cause) 54 { 55 super(cause); 56 } 57 } 58 | Popular Tags |