* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Tax\Exception; /** * Is thrown when tax is invalid */ class TaxConstraintException extends TaxException { /** * Thrown when provided tax id value is not valid */ public const INVALID_ID = 10; /** * Thrown when provided tax status value is not valid */ public const INVALID_STATUS = 20; }