/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Exception
NameSizeModeActions
ContainerNotFoundException.php11830644editdlrm
CoreException.php12230644editdlrm
DatabaseException.php12710644editdlrm
FileNotFoundException.php13790644editdlrm
InvalidArgumentException.php11840644editdlrm
IOException.php17950644editdlrm
NonASCIIInLocalPartException.php12680644editdlrm
NotImplementedException.php11830644editdlrm
ProductException.php12690644editdlrm
TranslatableCoreException.php30650644editdlrm
TranslatedException.php12900644editdlrm
TypeException.php12850644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Exception/IOException.php (1795B)
* @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\Exception; use Throwable; /** * Exception class thrown when a filesystem operation failure happens. */ class IOException extends CoreException { private $path; /** * @param string $message * @param int $code * @param Throwable $previous * @param string|null $path */ public function __construct($message = '', $code = 0, Throwable $previous = null, $path = null) { parent::__construct($message, $code, $previous); $this->path = $path; } /** * Returns the associated path for the exception. * * @return string|null */ public function getPath() { return $this->path; } }