NotImplementedException.php 283 B

1234567891011121314
  1. <?php
  2. namespace Elastica\Exception;
  3. /**
  4. * Not implemented exception.
  5. *
  6. * Is thrown if a function or feature is not implemented yet
  7. *
  8. * @author Nicolas Ruflin <spam@ruflin.com>
  9. */
  10. class NotImplementedException extends \BadMethodCallException implements ExceptionInterface
  11. {
  12. }