for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the rybakit/msgpack.php package.
*
* (c) Eugene Leonovich <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace MessagePack\Exception;
class InvalidCodeException extends UnpackingFailedException
{
public static function unknownCode(int $code) : self
return new self(\sprintf('Unknown code: 0x%x.', $code), $code);
}
public static function mismatchedType(string $type, int $code) : self
return new self(\sprintf('Invalid %s code: 0x%x.', $type, $code), $code);