for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gaufrette\Extras\Resolvable;
/**
* Exception thrown by the filesystem when resolution fail.
*
* @author Albin Kerouanton <[email protected]>
*/
class UnresolvableObjectException extends \Exception
{
* @param string $path Path of the unresolvable object
* @param \Exception|null $previous Previous exception, if any
public function __construct($path, \Exception $previous = null)
parent::__construct($path, null, $previous);
}