mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
18 lines
397 B
PHP
18 lines
397 B
PHP
<?php
|
|
|
|
/**
|
|
* Enhances error handling for a controller with ErrorPage generated output
|
|
*
|
|
* @package cms
|
|
* @subpackage controller
|
|
*/
|
|
class ErrorPageControllerExtension extends Extension {
|
|
|
|
public function onBeforeHTTPError($statusCode, $request) {
|
|
$response = ErrorPage::response_for($statusCode);
|
|
if($response) {
|
|
throw new SS_HTTPResponse_Exception($response, $statusCode);
|
|
}
|
|
}
|
|
}
|