function ErrorTestController::triggerRendererException
Same name in other branches
- 9 core/modules/system/tests/modules/error_test/src/Controller/ErrorTestController.php \Drupal\error_test\Controller\ErrorTestController::triggerRendererException()
- 10 core/modules/system/tests/modules/error_test/src/Controller/ErrorTestController.php \Drupal\error_test\Controller\ErrorTestController::triggerRendererException()
- 11.x core/modules/system/tests/modules/error_test/src/Controller/ErrorTestController.php \Drupal\error_test\Controller\ErrorTestController::triggerRendererException()
Trigger an exception during rendering.
1 string reference to 'ErrorTestController::triggerRendererException'
- error_test.routing.yml in core/
modules/ system/ tests/ modules/ error_test/ error_test.routing.yml - core/modules/system/tests/modules/error_test/error_test.routing.yml
File
-
core/
modules/ system/ tests/ modules/ error_test/ src/ Controller/ ErrorTestController.php, line 87
Class
- ErrorTestController
- Controller routines for error_test routes.
Namespace
Drupal\error_test\ControllerCode
public function triggerRendererException() {
return [
'#type' => 'page',
'#post_render' => [
function () {
throw new \Exception('This is an exception that occurs during rendering');
},
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.