MessagePack\Exception\IntegerOverflowException::__construct PHP Method

__construct() public method

public __construct ( $value, $code = null, Exception $previous = null )
$previous Exception
    public function __construct($value, $code = null, \Exception $previous = null)
    {
        $message = \sprintf('The value is too big: %u.', $value);
        parent::__construct($message, $code, $previous);
        $this->value = $value;
    }
IntegerOverflowException