BadMethodCallException.php 202 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. namespace Laminas\Stdlib\Exception;
  4. /**
  5. * Bad method call exception
  6. */
  7. class BadMethodCallException extends \BadMethodCallException implements ExceptionInterface
  8. {
  9. }