PHP 8.6.0 Beta 3 is available for testing

Yaf_Request_Abstract::getException

(Yaf >=1.0.0)

Yaf_Request_Abstract::getExceptionRetrieve the exception

Опис

public function Yaf_Request_Abstract::getException(): ?Exception

Retrieve the exception caught during dispatching.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

The Exception caught during dispatching, or null if none.

Приклади

Приклад #1 Yaf_Request_Abstract::getException() example

<?php
// In the bootstrap, enable exception catching so that any exception
// thrown during dispatching is forwarded to the error action
Yaf_Dispatcher::getInstance()->catchException(true);

class ErrorController extends Yaf_Controller_Abstract
{
    public function errorAction($exception)
    {
        var_dump($this->getRequest()->getException() === $exception);
    }
}
?>

Поданий вище приклад виведе щось схоже на:

bool(true)

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top