* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Framework; use function sprintf; /** * @internal This class is not covered by the backward compatibility promise for PHPUnit */ final class UnknownClassException extends InvalidArgumentException { public function __construct(string $name) { parent::__construct( sprintf( 'Class "%s" does not exist', $name, ), ); } }