for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nip\Filesystem\Exception;
/**
* Class IOException
* @package Nip\Filesystem\Exception
*/
class IOException extends \RuntimeException
{
private $path;
public function __construct($message, $code = 0, \Exception $previous = null, $path = null)
$this->path = $path;
parent::__construct($message, $code, $previous);
}
* {@inheritdoc}
public function getPath()
return $this->path;