Package douyu.mvc

Examples of douyu.mvc.ControllerException


      if (m.equals(method)) {
        return;
      }
    }

    throw new ControllerException("501 Not Implemented method: " + method);
  }
View Full Code Here


  public void executeAction(String actionName) throws ControllerException {
    this.actionName = actionName;
    try {
      executeAction();
    } catch (Exception e) {
      throw new ControllerException("failed to execute action: " + actionName, e);
    }
  }
View Full Code Here

TOP

Related Classes of douyu.mvc.ControllerException

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.