for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ThallesDella\FactoryRouter\Exceptions;
use Throwable;
/**
* Factory Router | Class DirectoryNotFoundException [ EXCEPTION ]
*
* @category FactoryRouter\Exceptions
* @package ThallesDella\FactoryRouter\Exceptions
* @author Thalles D. koester <[email protected]>
* @license https://choosealicense.com/licenses/mit/ MIT
* @link https://github.com/thallesdella/factory-router
*/
class DirectoryNotFoundException extends RoutesException
{
* DirectoryNotFoundException constructor.
* @param string $message Exception message
* @param int $code Exception code
* @param Throwable|null $previous Previous
public function __construct($message = "", $code = 0, Throwable $previous = null)
parent::__construct($message, $code, $previous);
}