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.
 
 
 
 
 

16 lines
277 B

  1. <?php
  2. namespace dokuwiki\Action\Exception;
  3. /**
  4. * Class NoActionException
  5. *
  6. * Thrown in the ActionRouter when a wanted action can not be found. Triggers
  7. * the unknown action event
  8. *
  9. * @package dokuwiki\Action\Exception
  10. */
  11. class NoActionException extends \Exception
  12. {
  13. }