001package com.randomnoun.common.jexl; 002 003/** An SqlFunction can throw this to indicate that it should be evaluated into an SQL literal, 004 * rather than being translated into an SQL expression. 005 * 006 * @author knoxg 007 */ 008public class EvalFallbackException extends Exception { 009 /** generated serialVersionUID */ 010 private static final long serialVersionUID = -1826807890464491396L; 011 012 public EvalFallbackException() { 013 super(); 014 } 015}