ActionAbort.php 476 B

1234567891011121314151617181920
  1. <?php
  2. namespace dokuwiki\Action\Exception;
  3. /**
  4. * Class ActionAbort
  5. *
  6. * Strictly speaking not an Exception but an expected execution path. Used to
  7. * signal when one action is done and another should take over.
  8. *
  9. * If you want to signal the same but under some error condition use ActionException
  10. * or one of it's decendants.
  11. *
  12. * The message will NOT be shown to the enduser
  13. *
  14. * @package dokuwiki\Action\Exception
  15. */
  16. class ActionAbort extends ActionException {
  17. }