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