for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
/**
* @package s9e\Bencode
* @copyright Copyright (c) 2014-2020 The s9e authors
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
namespace s9e\Bencode\Exceptions;
class PrematureEndOfData extends DecodingException
{
public function __construct(int $offset, string $message = 'Premature end of data')
parent::__construct($offset, $message);
}