* @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\Language\Exception; /** * Is thrown when error occurs while copying "No picture" for language */ class CopyingNoPictureException extends LanguageException { /** * @var int Code is used when error occurs while copying "No picture" image to products directory */ public const PRODUCT_IMAGE_COPY_ERROR = 1; /** * @var int Code is used when error occurs while copying "No picture" image to categories directory */ public const CATEGORY_IMAGE_COPY_ERROR = 2; /** * @var int Code is used when error occurs while copying "No picture" image to brands (manufacturers) directory */ public const BRAND_IMAGE_COPY_ERROR = 3; }