You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
475 B

  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. {
  18. }