Redirect auf Error

Hallo zusammen,
ich habe zur Probleme mit einem Plugin (Payone). Beim Debuggen fällt mir auf, dass folgende Anweisung

$this->redirect(array('controller' => 'index', 'action' => 'error'));

zu folgendem Fehler führt:

Fatal error : Uncaught Enlight_Controller_Exception: Action „Frontend_Index_errorAction“ not found failure for request url https://www.entdeckerpass.com/entdeckerpass/stage/de/index/error in /var/www/html/entdeckerpass_test/engine/Library/Enlight/Controller/Action.php:124 Stack trace: #0 /var/www/html/entdeckerpass_test/engine/Library/Enlight/Controller/Action.php(192): Enlight_Controller_Action->__call(‚errorAction‘, Array) #1 /var/www/html/entdeckerpass_test/engine/Library/Enlight/Controller/Dispatcher/Default.php(478): Enlight_Controller_Action->dispatch(‚errorAction‘) #2 /var/www/html/entdeckerpass_test/engine/Library/Enlight/Controller/Front.php(228): Enlight_Controller_Dispatcher_Default->dispatch(Object(Enlight_Controller_Request_RequestHttp), Object(Enlight_Controller_Response_ResponseHttp)) #3 /var/www/html/entdeckerpass_test/engine/Shopware/Kernel.php(188): Enlight_Controller_Front->dispatch() #4 /var/www/html/entdeckerpass_test/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php(102): Shopware\Kernel->han in /var/www/html/entdeckerpass_test/engine/Library/Enlight/Controller/Action.php on line 124

Soll heißen, im Index-Controller gibt es keine Action mit „error“. Das gibt es im Error-Controller und in anderen Controllern.

Super, danke. Der korrekte Redirect heißt dann:
$this->redirect(array('controller' => 'error', 'action' => 'error'));
Werde das dann mal Payone berichten, weil das funktioniert so nicht.
Übrigens, habe Shopware 5.6.9 im Einsatz, hatte ich bisher nicht geschrieben.