/home/smartonegroup/www/system/vendor/jms/serializer/src/Exception/NonIntCastableTypeException.php
<?php

declare(strict_types=1);

namespace JMS\Serializer\Exception;

final class NonIntCastableTypeException extends NonCastableTypeException
{
    /**
     * @param mixed $value
     */
    public function __construct($value)
    {
        parent::__construct('int', $value);
    }
}