for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Amock\Loader\Exception;
use InvalidArgumentException;
class InvalidLoaderException extends InvalidArgumentException
{
public function __construct(string $type)
parent::__construct(sprintf('Invalid loader type provided: %s', $type));
}