1
0
mirror of https://github.com/danog/dns.git synced 2024-12-03 18:07:53 +01:00
dns/lib/Addr/ResolutionErrors.php
2014-07-18 00:18:58 +01:00

12 lines
185 B
PHP

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