* @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\Manufacturer\Exception; /** * Is thrown manufacturer or manufacturers cannot be deleted */ class DeleteManufacturerException extends ManufacturerException { /** * When fails to delete single manufacturer */ public const FAILED_DELETE = 10; /** * When fails to delete manufacturers in bulk action */ public const FAILED_BULK_DELETE = 20; }