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.
10 lines
144 B
PHP
10 lines
144 B
PHP
<?php
|
|
|
|
namespace Amp\Dns;
|
|
|
|
/**
|
|
* This class will extend \Exception in a future version.
|
|
*/
|
|
class DnsException extends ResolutionException {
|
|
}
|