BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
rybakit
/
msgpack
/
src
/
Exception
📤 Upload
📝 New File
📁 New Folder
Close
Editing: InsufficientDataException.php
<?php /** * This file is part of the rybakit/msgpack.php package. * * (c) Eugene Leonovich <gen.work@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace MessagePack\Exception; class InsufficientDataException extends UnpackingFailedException { public function __construct(string $message = 'Not enough data to read', int $code = 0, ?\Throwable $previous = null) { parent::__construct($message, $code, $previous); } }
Save
Cancel