Package com.consol.citrus.exceptions

Examples of com.consol.citrus.exceptions.NoSuchValidationMatcherException


     * @return the validationMatcher instance.
     * @throws com.consol.citrus.exceptions.NoSuchValidationMatcherException
     */
    public ValidationMatcher getValidationMatcher(String validationMatcherName) throws NoSuchValidationMatcherException {
        if (!members.containsKey(validationMatcherName)) {
            throw new NoSuchValidationMatcherException("Can not find validation matcher " + validationMatcherName + " in library " + name + " (" + prefix + ")");
        }

        return members.get(validationMatcherName);
    }
View Full Code Here

TOP

Related Classes of com.consol.citrus.exceptions.NoSuchValidationMatcherException

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.