Package com.alibaba.citrus.service.moduleloader

Examples of com.alibaba.citrus.service.moduleloader.ActionEventNotFoundException


            handler = handlers.get(null);
        }

        // 未找到合适的handler method,报错
        if (handler == null) {
            throw new ActionEventNotFoundException("Could not find handler method for action event: " + event);
        }

        // 执行preHandler
        if (preHandler != null) {
            log.debug("Invoking pre-action event handler for event {}: {}", event, preHandler);
View Full Code Here


            handler = handlers.get(null);
        }

        // δ�ҵ����ʵ�handler method������
        if (handler == null) {
            throw new ActionEventNotFoundException("Could not find handler method for action event: " + event);
        }

        // ִ��preHandler
        if (preHandler != null) {
            log.debug("Invoking pre-action event handler for event {}: {}", event, preHandler);
View Full Code Here

TOP

Related Classes of com.alibaba.citrus.service.moduleloader.ActionEventNotFoundException

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.