Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
InvalidDecoratedMethod | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
0 | |
100.00% |
0 / 0 |
<?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 { } |