for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Ping for Laravel.
*
* This class makes Ping request to a host.
* Ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to elicit an ICMP ECHO_RESPONSE from a host or gateway.
* @author Angel Campos <[email protected]>
* @requires PHP 8.0
* @version 2.1.2
*/
namespace Acamposm\Ping\Exceptions;
use Exception;
class InvalidIPAddressException extends Exception
{
public function __construct()
parent::__construct('Invalid IP Address');
}