luyadev/luya

View on GitHub
core/web/ErrorHandlerExceptionRenderEvent.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace luya\web;

use yii\base\Event;

/**
 * ErrorHandler Exception Render Event.
 *
 * This event will be trigger before the ErrorHandler starts to render the exception.
 *
 * The $exception property contains the throwed {{yii\base\Exception}} object.
 *
 * @author Basil Suter <basil@nadar.io>
 * @since 1.0.0
 */
class ErrorHandlerExceptionRenderEvent extends Event
{
    /**
     * @var \yii\base\Exception
     */
    public $exception;
}