for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DavidePastore\Ipinfo\Exception;
/**
* IpInfo generic exception.
*/
class IpInfoException extends \Exception
{
private $fullMessage;
public function __construct($error, $fullMessage)
parent::__construct($error);
$this->fullMessage = $fullMessage;
}