for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ConfigTree\Exception;
class FileNotReadable extends \RuntimeException
{
public static function constructWithPath(string $path) : FileNotReadable
$message = 'Config file "' . $path . '" could not be read';
return new static($message);
}