1
0
mirror of https://github.com/danog/dns.git synced 2024-11-30 04:29:06 +01:00
dns/lib/ResolutionErrors.php
2014-09-24 13:35:10 -04:00

11 lines
188 B
PHP

<?php
namespace Amp\Dns;
class ResolutionErrors {
const ERR_INVALID_NAME = 1;
const ERR_NO_RECORD = 2;
const ERR_SERVER_TIMEOUT = 3;
const ERR_REQUEST_SEND_FAILED = 4;
}