Package se.jguru.nazgul.tools.validation.api.expression

Examples of se.jguru.nazgul.tools.validation.api.expression.ExpressionBuilder


     * InternalStateValidationException as MessageContainer.
     *
     * @return A newly created InternalStateValidationException instance with an empty message buffer.
     */
    public static ExpressionBuilder create() {
        return new ExpressionBuilder(new InternalStateValidationException());
    }
View Full Code Here


     *              permitted, and indicates that the cause is nonexistent or
     *              unknown.)
     * @return A newly created InternalStateValidationException instance with an empty message buffer.
     */
    public static ExpressionBuilder create(final Throwable cause) {
        return new ExpressionBuilder(new InternalStateValidationException(cause));
    }
View Full Code Here

TOP

Related Classes of se.jguru.nazgul.tools.validation.api.expression.ExpressionBuilder

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.