class PathExistsButIsNotDirectoryException
Hierarchy
- class \SebastianBergmann\CodeCoverage\Driver\PathExistsButIsNotDirectoryException extends \RuntimeException implements \SebastianBergmann\CodeCoverage\Exception
Expanded class hierarchy of PathExistsButIsNotDirectoryException
1 file declares its use of PathExistsButIsNotDirectoryException
- Facade.php in vendor/
phpunit/ php-code-coverage/ src/ Report/ Xml/ Facade.php
File
-
vendor/
phpunit/ php-code-coverage/ src/ Exception/ PathExistsButIsNotDirectoryException.php, line 16
Namespace
SebastianBergmann\CodeCoverage\DriverView source
final class PathExistsButIsNotDirectoryException extends RuntimeException implements Exception {
public function __construct(string $path) {
parent::__construct(sprintf('"%s" exists but is not a directory', $path));
}
}