13 lines
204 B
PHP
13 lines
204 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace phpseclib3\Exception;
|
|
|
|
/**
|
|
* Indicates an absent or malformed packet length header
|
|
*/
|
|
class InvalidPacketLengthException extends ConnectionClosedException
|
|
{
|
|
}
|