1
0
mirror of https://github.com/xPaw/PHP-Source-Query.git synced 2026-05-18 15:13:33 +02:00
Files
Test-Miroir/SourceQuery/Exception/InvalidPacketException.php
Pavel Djundik 75d3465690 Drop the email
2019-11-25 16:07:21 +02:00

22 lines
434 B
PHP

<?php
/**
* @author Pavel Djundik
*
* @link https://xpaw.me
* @link https://github.com/xPaw/PHP-Source-Query
*
* @license GNU Lesser General Public License, version 2.1
*
* @internal
*/
namespace xPaw\SourceQuery\Exception;
class InvalidPacketException extends SourceQueryException
{
const PACKET_HEADER_MISMATCH = 1;
const BUFFER_EMPTY = 2;
const BUFFER_NOT_EMPTY = 3;
const CHECKSUM_MISMATCH = 4;
}