NoActionException.php 278 B

123456789101112131415
  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. }