Files
mr-legend_wiki/inc/Action/Exception/NoActionException.php
T
2024-07-08 03:32:47 +09:00

16 lines
277 B
PHP

<?php
namespace dokuwiki\Action\Exception;
/**
* Class NoActionException
*
* Thrown in the ActionRouter when a wanted action can not be found. Triggers
* the unknown action event
*
* @package dokuwiki\Action\Exception
*/
class NoActionException extends \Exception
{
}