Package com.coherentlogic.wb.client.core.exceptions

Examples of com.coherentlogic.wb.client.core.exceptions.InvalidParameterValueException


     * Setter method for the lending type.
     */
    public QueryBuilder setLendingType (LendingTypeCodes lendingTypeCode) {

        if (lendingTypeCode == null)
            throw new InvalidParameterValueException(
                "The lendingTypeCode is null.");

        return setLendingType(lendingTypeCode.name());
    }
View Full Code Here


     * Setter method for the income level.
     */
    public QueryBuilder setIncomeLevel (IncomeLevelCodes incomeLevelCode) {

        if (incomeLevelCode == null)
            throw new InvalidParameterValueException(
                "The incomeLevelCode is null.");

        return setIncomeLevel(incomeLevelCode.name());
    }
View Full Code Here

TOP

Related Classes of com.coherentlogic.wb.client.core.exceptions.InvalidParameterValueException

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.