Initial Commit
This commit is contained in:
15
dependencies/amphp/dns/lib/ConfigException.php
vendored
Normal file
15
dependencies/amphp/dns/lib/ConfigException.php
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace WP_Ultimo\Dependencies\Amp\Dns;
|
||||
|
||||
use Throwable;
|
||||
/**
|
||||
* MUST be thrown in case the config can't be read and no fallback is available.
|
||||
*/
|
||||
class ConfigException extends DnsException
|
||||
{
|
||||
public function __construct(string $message, Throwable $previous = null)
|
||||
{
|
||||
parent::__construct($message, 0, $previous);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user