You are here

InvalidDecoratedMethod.php in Service Container 7.2

Same filename and directory in other branches
  1. 7 lib/Drupal/Component/Plugin/Exception/InvalidDecoratedMethod.php

File

lib/Drupal/Component/Plugin/Exception/InvalidDecoratedMethod.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Component\Plugin\Exception\InvalidDecoratedMethod.
 */
namespace Drupal\Component\Plugin\Exception;

use BadMethodCallException;

/**
 * Exception thrown when a decorator's _call() method is triggered, but the
 * decorated object does not contain the requested method.
 *
 */
class InvalidDecoratedMethod extends BadMethodCallException implements ExceptionInterface {

}

Classes

Namesort descending Description
InvalidDecoratedMethod Exception thrown when a decorator's _call() method is triggered, but the decorated object does not contain the requested method.