You are here

InvalidDecoratedMethod.php in Drupal 10

File

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

namespace Drupal\Component\Plugin\Exception;


/**
 * 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.