001package com.randomnoun.common.jexl.sql; 002 003/** The TransformedSqlColumn.reverseTransformLiteral() method can throw a CannotReverseLiteralException to indicate that 004 * it cannot reverse a transformation on the supplied literal. 005 * 006 * @author knoxg 007 */ 008public class CannotReverseTransformationException extends Exception { 009 /** generated serialVersionUID */ 010 private static final long serialVersionUID = -400067560958864984L; 011 012 public CannotReverseTransformationException() { 013 super(); 014 } 015}