All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.lib.ognl.enhance.UnsupportedCompilationException Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
package com.feilong.lib.ognl.enhance;

/**
 * Thrown during bytecode enhancement conversions of ognl expressions to indicate
 * that a certain expression isn't currently supported as a pure java bytecode enhanced
 * version.
 * 
 * 

* If this exception is thrown it is expected that ognl will fall back to default ognl * evaluation of the expression. *

* * @author jkuhnert */ public class UnsupportedCompilationException extends RuntimeException{ /** * */ private static final long serialVersionUID = -2961575957560837968L; public UnsupportedCompilationException(String message){ super(message); } public UnsupportedCompilationException(String message, Throwable cause){ super(message, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy