for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MediaMonks\SonataMediaBundle\Exception;
use Throwable;
class InvalidProviderUrlException extends InvalidQueryParameterException
{
public function __construct($provider, $code = 0, Throwable $previous = null)
parent::__construct(sprintf('The supplied URL does not look like a %s URL', $provider), $code, $previous);
}