InvalidDecoratedMethod.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\Component\Plugin\ExceptionFile
core/lib/Drupal/Component/Plugin/Exception/InvalidDecoratedMethod.phpView source
<?php
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
Name | Description |
---|---|
InvalidDecoratedMethod | Exception thrown when a decorator's _call() method is triggered, but the decorated object does not contain the requested method. |