164ab5140SAndreas Gohr<?php 264ab5140SAndreas Gohr 364ab5140SAndreas Gohrnamespace dokuwiki\Action\Exception; 464ab5140SAndreas Gohr 5*e8aa6739SAndreas Gohr/** 6*e8aa6739SAndreas Gohr * Class ActionAbort 7*e8aa6739SAndreas Gohr * 8*e8aa6739SAndreas Gohr * Strictly speaking not an Exception but an expected execution path. Used to 9*e8aa6739SAndreas Gohr * signal when one action is done and another should take over. 10*e8aa6739SAndreas Gohr * 11*e8aa6739SAndreas Gohr * If you want to signal the same but under some error condition use ActionException 12*e8aa6739SAndreas Gohr * or one of it's decendants. 13*e8aa6739SAndreas Gohr * 14*e8aa6739SAndreas Gohr * The message will NOT be shown to the enduser 15*e8aa6739SAndreas Gohr * 16*e8aa6739SAndreas Gohr * @package dokuwiki\Action\Exception 17*e8aa6739SAndreas Gohr */ 1864ab5140SAndreas Gohrclass ActionAbort extends ActionException { 1964ab5140SAndreas Gohr 2064ab5140SAndreas Gohr} 21