1<?php
2/**
3 * This file is part of the FreeDSx Socket package.
4 *
5 * (c) Chad Sikorra <Chad.Sikorra@gmail.com>
6 *
7 * For the full copyright and license information, please view the LICENSE
8 * file that was distributed with this source code.
9 */
10
11namespace FreeDSx\Socket\Exception;
12
13/**
14 * Thrown in the MessageQueue if the data received is not complete.
15 *
16 * @author Chad Sikorra <Chad.Sikorra@gmail.com>
17 */
18class PartialMessageException extends \Exception
19{
20}
21