* @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 when cannot update manufacturer */ class UpdateManufacturerException extends ManufacturerException { /** * When fails to update single manufacturer status */ public const FAILED_UPDATE_STATUS = 10; /** * When fails to update manufacturers status in bulk action */ public const FAILED_BULK_UPDATE_STATUS = 20; }