\NetCommonsExceptionRenderer

Exception Renderer.

Captures and handles all unhandled exceptions. Displays helpful framework errors when debug > 1. When debug < 1 a CakeException will render 404 or 500 errors. If an uncaught exception is thrown and it is a type that ExceptionHandler does not know about it will be treated as a 500 error.

Implementing application specific exception rendering

You can implement application specific exception handling in one of a few ways:

  • Create a AppController::appError();
  • Create a subclass of YAExceptionRenderer and configure it to be the Exception.renderer

Using AppController::appError();

This controller method is called instead of the default exception handling. It receives the thrown exception as its only argument. You should implement your error handling in that method.

Using a subclass of YAExceptionRenderer

Using a subclass of YAExceptionRenderer gives you full control over how Exceptions are rendered, you can configure your class in your core.php, with Configure::write('Exception.renderer', 'MyClass'); You should place any custom exception renderers in app/Lib/Error.

Summary

Methods
Properties
Constants
error400()
error500()
No public properties found
HTML_INTERVAL
JSON_INTERVAL
_getController()
_get400Message()
_is403And404()
_get403And404Redirect()
_setError()
_getName()
No protected properties found
N/A
__loadedAuthComponent()
__isLoggedIn()
No private properties found
N/A

Constants

HTML_INTERVAL

HTML_INTERVAL = 4000 : integer

エラーのインターバル

JSON_INTERVAL

JSON_INTERVAL = 6000 : integer

エラーのインターバル

Methods

error400()

error400(\Exception  $error) : void

Convenience method to display a 400 series page.

Parameters

\Exception $error

Exception

error500()

error500(\Exception  $error) : void

Convenience method to display a 500 page.

Parameters

\Exception $error

Exception

_getController()

_getController(\Exception  $exception) : \Controller

Exceptionが発生した場合、ExceptionRenderer.phpでは、 CakeErrorController::startupProcessを呼んでいるため、PermissionComponentが2度処理されてしまう。 NC3ではCakeErrorController::startupProcessを呼ぶ必要がないので、 オーバライドして、startupProcessを呼ばないようにする。

例) 1.アクセス不可の画面にログインなしで呼ぶ。 2.PermissionComponentで設定画面のアクセスチェックが実行され、エラーとなり、ForbiddenExceptionをthrowする。 3.ExcepitonRendererがnewされ、ExceptionRendererの__construct()が呼ばれる。 4.下記で、CakeErrorControllerがnewされ、startupProcess()が実行される。   CakeErrorControllerがAppController(NetCommonsAppController)を継承していて、そこで設定されているPermissionComponentが再度呼ばれる。   https://github.com/cakephp/cakephp/blob/2.10.15/lib/Cake/Error/ExceptionRenderer.php#L157-L159 5.4は、try cacheされてるので、4のPermissionComponentのExceptionは、無視され、処理が継続され、error400()が実行される。

Parameters

\Exception $exception

The exception to get a controller for.

Returns

\Controller

_get400Message()

_get400Message(\Exception  $error) : string

エラーメッセージ取得

Parameters

\Exception $error

Exception

Returns

string —

$message

_is403And404()

_is403And404(\Exception  $error) : boolean

403か404のエラーかチェックする

Parameters

\Exception $error

Exception

Returns

boolean

_get403And404Redirect()

_get403And404Redirect() : array

リダイレクトURLを取得する。

Returns

array —

array($redirect, $redirectUrl)

_setError()

_setError(string  $template, \Exception  $error, array  $results) : void

エラーをコントローラにセット

Parameters

string $template

viewテンプレート

\Exception $error

Exception

array $results

viewにセットする配列

_getName()

_getName(integer  $errorCode, string  $exceptionName) : string

エラー名取得

Parameters

integer $errorCode

エラーコード

string $exceptionName

Exceptionクラス名

Returns

string

__loadedAuthComponent()

__loadedAuthComponent() : boolean

Authコンポーネントがロードされているか否か

Returns

boolean

__isLoggedIn()

__isLoggedIn() : boolean

ログインしているかいない

Returns

boolean