for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\Gravatar\Exceptions;
use InvalidArgumentException;
/**
* Class InvalidImageUrlException
*
* @package Arcanedev\Gravatar\Exceptions
* @author ARCANEDEV <[email protected]>
*/
class InvalidImageUrlException extends InvalidArgumentException
{
public static function make()
return new static(
'The default image specified is not a recognized gravatar "default" and is not a valid URL'
);
}