* @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 or taxes cannot be updated */ class UpdateTaxException extends TaxException { /** * When fails to update single tax status */ public const FAILED_UPDATE_STATUS = 10; /** * When fails to update taxes status on bulk action */ public const FAILED_BULK_UPDATE_STATUS = 20; }