xref: /dokuwiki/inc/Action/Exception/ActionException.php (revision 64ab5140f7b1c996873fbfe9bab26d9202fbb773)
1*64ab5140SAndreas Gohr<?php
2*64ab5140SAndreas Gohr
3*64ab5140SAndreas Gohrnamespace dokuwiki\Action\Exception;
4*64ab5140SAndreas Gohr
5*64ab5140SAndreas Gohrclass ActionException extends \Exception {
6*64ab5140SAndreas Gohr
7*64ab5140SAndreas Gohr    protected $newaction;
8*64ab5140SAndreas Gohr
9*64ab5140SAndreas Gohr    public function __construct($newaction = 'show', $message='') {
10*64ab5140SAndreas Gohr        parent::__construct($message);
11*64ab5140SAndreas Gohr        $this->newaction = $newaction;
12*64ab5140SAndreas Gohr    }
13*64ab5140SAndreas Gohr
14*64ab5140SAndreas Gohr    public function getNewAction() {
15*64ab5140SAndreas Gohr        return $this->newaction;
16*64ab5140SAndreas Gohr    }
17*64ab5140SAndreas Gohr}
18