* @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\Export\Exception; /** * Is thrown when cannot export due to lacking write permissions */ class FileWritingException extends ExportException { /** * When file cannot be opened for writing */ public const CANNOT_OPEN_FILE_FOR_WRITING = 10; }