Constructs a MissingBundleClassException.
string $bundle_class: The bundle class which should exist.
public function __construct(string $bundle_class) { $message = sprintf('Bundle class %s does not exist.', $bundle_class); parent::__construct($message); }