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