Android Open Source - Kite Evaluator Exception






From Project

Back to project page Kite.

License

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.

Java Source Code

/**
 * /*  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);
  }
}




Java Source Code List

com.efurture.kite.Kite.java
com.efurture.kite.OnFinishLayoutListener.java
com.efurture.kite.example.KiteItemActivity.java
com.efurture.kite.example.MainActivity.java
com.efurture.kite.expression.EvaluatorException.java
com.efurture.kite.expression.EvaluatorManager.java
com.efurture.kite.expression.Evaluator.java
com.efurture.kite.expression.Exp4jEvaluator.java
com.efurture.kite.expression.MVEL2Evaluator.java
com.efurture.kite.layout.LayoutExtension.java
com.efurture.kite.param.ParamMap.java
com.efurture.kite.param.Params.java