mirror of
https://github.com/danog/dns.git
synced 2025-01-23 05:51:11 +01:00
d26f9bb44f
Replaces async loading of hosts and resolver files with blocking reads by default. Closes #78.
15 lines
317 B
PHP
15 lines
317 B
PHP
<?php
|
|
|
|
namespace 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);
|
|
}
|
|
}
|