10 lines
145 B
PHP
Executable file
10 lines
145 B
PHP
Executable file
<?php declare(strict_types=1);
|
|
|
|
namespace Amp\DoH;
|
|
|
|
/**
|
|
* Thrown when DoH resolution fails.
|
|
*/
|
|
final class DoHException extends \Exception
|
|
{
|
|
}
|