for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace JMS\Serializer\Exception;
use Symfony\Component\Validator\ConstraintViolationListInterface;
class ValidationFailedException extends RuntimeException
{
/**
* @var ConstraintViolationListInterface
*/
private $list;
public function __construct(ConstraintViolationListInterface $list)
parent::__construct(sprintf('Validation failed with %d error(s).', \count($list)));
$this->list = $list;
}
public function getConstraintViolationList(): ConstraintViolationListInterface
return $this->list;