Package org.axonframework.test

Examples of org.axonframework.test.FixtureExecutionException


    private void injectResource(Saga saga, Method setterMethod, Object resource) {
        try {
            ReflectionUtils.ensureAccessible(setterMethod);
            setterMethod.invoke(saga, resource);
        } catch (IllegalAccessException e) {
            throw new FixtureExecutionException("An exception occurred while trying to inject a resource", e);
        } catch (InvocationTargetException e) {
            throw new FixtureExecutionException("An exception occurred while trying to inject a resource", e);
        }
    }
View Full Code Here

TOP

Related Classes of org.axonframework.test.FixtureExecutionException

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.