View Javadoc
1   package com.randomnoun.common.jexl.sql;
2   
3   /** The TransformedSqlColumn.reverseTransformLiteral() method can throw a CannotReverseLiteralException to indicate that
4    * it cannot reverse a transformation on the supplied literal. 
5    * 
6    * @author knoxg
7    */
8   public class CannotReverseTransformationException extends Exception {
9   	/** generated serialVersionUID */
10  	private static final long serialVersionUID = -400067560958864984L;
11  
12  	public CannotReverseTransformationException() {
13  		super();
14  	}
15  }