1
0
mirror of https://github.com/xPaw/PHP-Source-Query.git synced 2026-05-18 14:43:33 +02:00

PSR-4 support for #70 plus PhpDoc

This commit is contained in:
Tim
2015-10-10 17:31:05 +01:00
parent a0f07fa801
commit 9af9cf4f6b
17 changed files with 259 additions and 98 deletions
@@ -0,0 +1,21 @@
<?php
/**
* @author Pavel Djundik <sourcequery@xpaw.me>
*
* @link https://xpaw.me
* @link https://github.com/xPaw/PHP-Source-Query-Class
*
* @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;
}