You are here

InvalidStorageFilterException.php in Config Filter 8

Same filename and directory in other branches
  1. 8.2 src/Exception/InvalidStorageFilterException.php

File

src/Exception/InvalidStorageFilterException.php
View 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

Namesort descending Description
InvalidStorageFilterException Thrown when a StorageFilterInterface is expected but not present.