InvalidDecoratedMethod.php 318 B

1234567891011
  1. <?php
  2. namespace Drupal\Component\Plugin\Exception;
  3. use BadMethodCallException;
  4. /**
  5. * Exception thrown when a decorator's _call() method is triggered, but the
  6. * decorated object does not contain the requested method.
  7. */
  8. class InvalidDecoratedMethod extends BadMethodCallException implements ExceptionInterface {}