InvalidStorageFilterException.php in Config Filter 8
Same filename and directory in other branches
Namespace
Drupal\config_filter\ExceptionFile
src/Exception/InvalidStorageFilterException.phpView source
<?php
namespace Drupal\config_filter\Exception;
use Drupal\config_filter\Config\StorageFilterInterface;
/**
* Thrown when a StorageFilterInterface is expected but not present.
*/
class InvalidStorageFilterException extends \InvalidArgumentException {
/**
* InvalidStorageFilterException constructor.
*/
public function __construct() {
parent::__construct("An argument does not implement " . StorageFilterInterface::class);
}
}
Classes
Name | Description |
---|---|
InvalidStorageFilterException | Thrown when a StorageFilterInterface is expected but not present. |