for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Passbook package.
*
* (c) Eymen Gunay <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Passbook\Exception;
/**
* Thrown when an error occurred in the component File
* @author Eymen Gunay <[email protected]>
class FileNotFoundException extends FileException
{
* Constructor.
* @param string $path The path to the file that was not found
public function __construct($path)
parent::__construct(sprintf('The file "%s" does not exist', $path));
}