DeprecatedException.php 282 B

1234567891011121314
  1. <?php
  2. namespace Elastica\Exception;
  3. /**
  4. * Deprecated exception.
  5. *
  6. * Is thrown if a function or feature is deprecated and its usage can't be supported by BC layer
  7. *
  8. * @author Evgeniy Sokolov <ewgraf@gmail.com>
  9. */
  10. class DeprecatedException extends NotImplementedException
  11. {
  12. }