Package cn.wensiqun.asmsupport.exception

Examples of cn.wensiqun.asmsupport.exception.VerifyErrorException


     * @return
     */
    @Override
    public final Return runReturn() {
        if (!method.getMethodEntity().getReturnType().equals(Type.VOID_TYPE)) {
            throw new VerifyErrorException("Do not specify a return type! ");
        }
        return OperatorFactory.newOperator(Return.class,
                new Class<?>[]{ProgramBlock.class, Parameterized.class}, getExecuteBlock(), null);
    }
View Full Code Here

TOP

Related Classes of cn.wensiqun.asmsupport.exception.VerifyErrorException

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.