for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace LAG\AdminBundle\Exception\DataProvider;
use Exception;
class ClassNotSupportedException extends Exception
{
public function __construct(string $class)
parent::__construct(sprintf('The class "%s" is not supported by any data providers', $class));
}