Package com.firefly.mvc.web.support.exception

Examples of com.firefly.mvc.web.support.exception.WebException


    this.object = object;
    try {
      this.proxy = ReflectUtils.getMethodProxy(method);
    } catch (Throwable e) {
      log.error("handler init error", e);
      throw new WebException("handler invoke error");
    }
    this.methodParam = new byte[method.getParameterTypes().length];
  }
View Full Code Here

TOP

Related Classes of com.firefly.mvc.web.support.exception.WebException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.