for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mouf\Composer;
use RuntimeException;
class MissingFileException extends RuntimeException
{
public static function couldNotLoadFile($path)
return new self('Could not load file "'.$path.'"');
}