for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* ShouldPHP
*
* @author Gabriel Jacinto <[email protected]>
* @status dev
* @link https://github.com/GabrielJMJ/ShouldPHP
* @license MIT
*/
namespace Gabrieljmj\Should\Exception;
class DirectoryDoesNotExistException extends \RuntimeException
{
public function trigger($dir)
throw new DirectoryDoesNotExists('Directory does not exist: ' . $dir, ExceptionCodes::DIRECTORY_DOES_NOT_EXISTS);
}