Back to project page Kite.
The source code is released under:
Apache License
If you think the Android project Kite listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * /* w w w .ja va 2 s . c om*/ */ package com.efurture.kite.expression; /** * @author gubaojian email: gubaojian@163.com * */ public class EvaluatorException extends RuntimeException { private static final long serialVersionUID = 8620868464077794580L; public EvaluatorException() { super(); } public EvaluatorException(String message, Throwable cause) { super(message, cause); } public EvaluatorException(String message) { super(message); } public EvaluatorException(Throwable cause) { super(cause); } }