You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
434 B
22 lines
434 B
<?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;
|
|
}
|