* @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 deleted */ class DeleteTaxException extends TaxException { /** * When fails to delete single tax */ public const FAILED_DELETE = 10; /** * When fails to delete taxes on bulk action */ public const FAILED_BULK_DELETE = 20; }