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