class InvalidDirectoryException
@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
@internal This class is not covered by the backward compatibility promise for PHPUnit
Hierarchy
- class \PHPUnit\Util\InvalidDirectoryException extends \RuntimeException implements \PHPUnit\Util\Exception
Expanded class hierarchy of InvalidDirectoryException
File
-
vendor/
phpunit/ phpunit/ src/ Util/ Exception/ InvalidDirectoryException.php, line 20
Namespace
PHPUnit\UtilView source
final class InvalidDirectoryException extends RuntimeException implements Exception {
public function __construct(string $directory) {
parent::__construct(sprintf('"%s" is not a directory', $directory));
}
}