Screen\Exceptions\InvalidUrlException::__construct PHP Method

__construct() public method

public __construct ( $url, $code, Exception $previous = null )
$previous Exception
    public function __construct($url, $code = 0, Exception $previous = null)
    {
        $message = sprintf("The url '%s' is not valid.", $url);
        parent::__construct($message, $code, $previous);
    }
InvalidUrlException