org.broadleafcommerce.openadmin.web.rulebuilder.MVELTranslationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of broadleaf-open-admin-platform Show documentation
Show all versions of broadleaf-open-admin-platform Show documentation
BroadleafCommerce Open Admin Platform
/*
* Copyright 2008-2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.broadleafcommerce.openadmin.web.rulebuilder;
import org.broadleafcommerce.common.exception.TranslatableException;
/**
* @author Elbert Bautista (elbertbautista)
*/
public class MVELTranslationException extends TranslatableException {
private static final long serialVersionUID = 1L;
public static final int SPECIFIED_FIELD_NOT_FOUND = 100;
public static final int NO_FIELD_FOUND_IN_RULE = 101;
public static final int INCOMPATIBLE_DATE_VALUE = 102;
public static final int UNRECOGNIZABLE_RULE = 103;
public static final int OPERATOR_NOT_FOUND = 104;
public static final int INCOMPATIBLE_DECIMAL_VALUE = 105;
public static final int INCOMPATIBLE_INTEGER_VALUE = 106;
public static final int INCOMPATIBLE_RULE = 107;
public MVELTranslationException(int code, String message) {
super(code, message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy