1 package com.randomnoun.common.jexl;
2
3 /** An SqlFunction can throw this to indicate that it should be evaluated into an SQL literal,
4 * rather than being translated into an SQL expression.
5 *
6 * @author knoxg
7 */
8 public class EvalFallbackException extends Exception {
9 /** generated serialVersionUID */
10 private static final long serialVersionUID = -1826807890464491396L;
11
12 public EvalFallbackException() {
13 super();
14 }
15 }