21 lines
		
	
	
		
			476 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			476 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace dokuwiki\Action\Exception;
 | |
| 
 | |
| /**
 | |
|  * Class ActionAbort
 | |
|  *
 | |
|  * Strictly speaking not an Exception but an expected execution path. Used to
 | |
|  * signal when one action is done and another should take over.
 | |
|  *
 | |
|  * If you want to signal the same but under some error condition use ActionException
 | |
|  * or one of it's decendants.
 | |
|  *
 | |
|  * The message will NOT be shown to the enduser
 | |
|  *
 | |
|  * @package dokuwiki\Action\Exception
 | |
|  */
 | |
| class ActionAbort extends ActionException {
 | |
| 
 | |
| }
 |