当前位置: 首页>>代码示例>>PHP>>正文


PHP Exception::getRawMessage方法代码示例

本文整理汇总了PHP中Exception::getRawMessage方法的典型用法代码示例。如果您正苦于以下问题:PHP Exception::getRawMessage方法的具体用法?PHP Exception::getRawMessage怎么用?PHP Exception::getRawMessage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Exception的用法示例。


在下文中一共展示了Exception::getRawMessage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: handleException

 /**
  * Handles a thrown exception.  Will also log extra information if the exception happens to by a MySql deadlock.
  *
  * @param \Exception $exception The exception captured.
  *
  * @return null
  */
 protected function handleException($exception)
 {
     // Do some logging.
     if ($exception instanceof \HttpException) {
         $status = $exception->status ? $exception->{$status} : '';
         Craft::log(($status ? $status . ' - ' : '') . $exception->getMessage(), LogLevel::Warning);
     } else {
         if ($exception instanceof \Twig_Error) {
             Craft::log($exception->getRawMessage(), LogLevel::Error);
         } else {
             Craft::log($exception->getMessage(), LogLevel::Error);
         }
     }
     // Log MySQL deadlocks
     if ($exception instanceof \CDbException && strpos($exception->getMessage(), 'Deadlock') !== false) {
         $data = craft()->db->createCommand('SHOW ENGINE INNODB STATUS')->query();
         $info = $data->read();
         $info = serialize($info);
         Craft::log('Deadlock error, innodb status: ' . $info, LogLevel::Error, 'system.db.CDbCommand');
     }
     // If this is a Twig Runtime exception, use the previous one instead
     if ($exception instanceof \Twig_Error_Runtime) {
         if ($previousException = $exception->getPrevious()) {
             $exception = $previousException;
         }
     }
     // Special handling for Twig syntax errors
     if ($exception instanceof \Twig_Error) {
         $this->handleTwigError($exception);
     } else {
         if ($exception instanceof DbConnectException) {
             $this->handleDbConnectionError($exception);
         } else {
             parent::handleException($exception);
         }
     }
 }
开发者ID:nitwitt10,项目名称:Trove,代码行数:44,代码来源:ErrorHandler.php

示例2: handleException

 /**
  * The __toString method isn't allowed to throw exceptions so we turn them into an error instead
  *
  * @param \Exception $e
  *
  * @return string
  */
 private function handleException(\Exception $e)
 {
     trigger_error($e->getMessage() . "\n" . $e->getTraceAsString(), E_USER_WARNING);
     if ($e instanceof \Twig_Error) {
         return '<strong>' . $e->getRawMessage() . '</strong>';
     }
     return '';
 }
开发者ID:OPARQUE,项目名称:Congresso-Anpcont,代码行数:15,代码来源:BoltResponse.php


注:本文中的Exception::getRawMessage方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。