* @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\AttributeGroup\Attribute\Exception; /** * Is thrown when attribute deletion fails */ class DeleteAttributeException extends AttributeException { /** * When fails to delete single attribute */ public const FAILED_DELETE = 10; /** * When deleting fails in bulk action */ public const FAILED_BULK_DELETE = 20; }