Yaf_Dispatcher::throwException
(Yaf >=1.0.0)
Yaf_Dispatcher::throwException — Switch on/off exception throwing
Description
Siwtch on/off exception throwing while unexpected error occurring. When this is on, Yaf will throwing exceptions instead of triggering catchable errors.
You can also use application.dispatcher.throwException to achieve the same purpose.
Parameters
-
flag
-
bool
Return Values
Examples
Example #1 Yaf_Dispatcher::throwexception()example
<?php
$config = array(
'application' => array(
'directory' => dirname(__FILE__),
),
);
$app = new Yaf_Application($config);
$app->getDispatcher()->throwException(true);
try {
$app->run();
} catch (Yaf_Exception $e) {
var_dump($e->getMessage());
}
?>
The above example will output something similar to:
string(59) "Could not find controller script /tmp/controllers/Index.php"
Example #2 Yaf_Dispatcher::throwexception()example
<?php
$config = array(
'application' => array(
'directory' => dirname(__FILE__),
),
);
$app = new Yaf_Application($config);
$app->getDispatcher()->throwException(false);
$app->run();
?>
The above example will output something similar to:
PHP Catchable fatal error: Yaf_Application::run(): Could not find controller script /tmp/controllers/Index.php in /tmp/1.php on line 12
See Also
- Yaf_Dispatcher::catchException() - Switch on/off exception catching
- Yaf_Exception
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Другие базовые расширения
- Yet Another Framework
- Функция Yaf_Dispatcher::autoRender() - Switch on/off autorendering
- Функция Yaf_Dispatcher::catchException() - Switch on/off exception catching
- Функция Yaf_Dispatcher::__clone() - Yaf_Dispatcher can not be cloned
- Функция Yaf_Dispatcher::__construct() - Yaf_Dispatcher constructor
- Функция Yaf_Dispatcher::disableView() - Disable view rendering
- Функция Yaf_Dispatcher::dispatch() - Dispatch a request
- Функция Yaf_Dispatcher::enableView() - enable view rendering
- Функция Yaf_Dispatcher::flushInstantly() - Switch on/off the instant flushing
- Функция Yaf_Dispatcher::getApplication() - Retrive the application
- Функция Yaf_Dispatcher::getInstance() - Retrive the dispatcher instance
- Функция Yaf_Dispatcher::getRequest() - Retrive the request instance
- Функция Yaf_Dispatcher::getRouter() - Retrive router instance
- Функция Yaf_Dispatcher::initView() - Initialize view and return it
- Функция Yaf_Dispatcher::registerPlugin() - Register a plugin
- Функция Yaf_Dispatcher::returnResponse() - The returnResponse purpose
- Функция Yaf_Dispatcher::setDefaultAction() - Change default action name
- Функция Yaf_Dispatcher::setDefaultController() - Change default controller name
- Функция Yaf_Dispatcher::setDefaultModule() - Change default module name
- Функция Yaf_Dispatcher::setErrorHandler() - Set error handler
- Функция Yaf_Dispatcher::setRequest() - The setRequest purpose
- Функция Yaf_Dispatcher::setView() - Set a custom view engine
- Функция Yaf_Dispatcher::__sleep() - Yaf_Dispatcher can not be serialized
- Функция Yaf_Dispatcher::throwException() - Switch on/off exception throwing
- Функция Yaf_Dispatcher::__wakeup() - Yaf_Dispatcher can not be unserialized
Коментарии
404 Not Found