1543a6b04d024e9c1d3af73c4753fb5042ccbd57
[yaffs-website] / web / core / lib / Drupal / Component / Plugin / Exception / InvalidDecoratedMethod.php
1 <?php
2
3 namespace Drupal\Component\Plugin\Exception;
4
5 use BadMethodCallException;
6
7 /**
8  * Exception thrown when a decorator's _call() method is triggered, but the
9  * decorated object does not contain the requested method.
10  */
11 class InvalidDecoratedMethod extends BadMethodCallException implements ExceptionInterface {}