Package org.axonframework.common.annotation

Examples of org.axonframework.common.annotation.UnsupportedHandlerException


    }

    private static void validate(Constructor constructor, ParameterResolver[] parameterResolvers) {
        for (int i = 0; i < constructor.getParameterTypes().length; i++) {
            if (parameterResolvers[i] == null) {
                throw new UnsupportedHandlerException(
                        format("On method %s, parameter %s is invalid. It is not of any format supported by a provided"
                                       + "ParameterValueResolver.",
                               constructor.toGenericString(), i + 1), constructor);
            }
        }
View Full Code Here

TOP

Related Classes of org.axonframework.common.annotation.UnsupportedHandlerException

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.