for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MallardDuck\Whois\Exceptions;
/**
* A basic exception for Missing Arguments.
*/
class UnknownWhoisException extends \Exception
{
* Basic Exception Constructor
* @param string $message The Exceptions message: this type requires it be related to a missing item.
* @param int $code The user defined exception code.
* @param null|\Exception $previous If present, the previous exception if nested exception.
public function __construct($message, $code = 0, \Exception $previous = null)
parent::__construct($message, $code, $previous);
}