for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thruster\Component\Dns\Exception;
/**
* Class TimeoutException
*
* @package Thruster\Component\Dns\Exception
* @author Aurimas Niekis <[email protected]>
*/
class TimeoutException extends \Exception
{
public function __construct(string $name)
$message = sprintf('DNS query for %s timed out', $name);
parent::__construct($message);
}