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


PHP Exception::getErrorType方法代码示例

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


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

示例1: setErrorResponse

 /**
  * Create an error response for any exception thrown while creating this email
  *
  * @param \Exception $e
  *
  */
 protected function setErrorResponse(\Exception $e)
 {
     if ($e instanceof ControllerException) {
         $result = $e->getErrorType();
     } else {
         $result = 'genericError';
     }
     WikiaLogger::instance()->error('Error while sending email', ['result' => $result, 'msg' => $e->getMessage()]);
     $this->hasErrorResponse = true;
     $this->response->setData(['result' => $result, 'msg' => $e->getMessage()]);
 }
开发者ID:Tjorriemorrie,项目名称:app,代码行数:17,代码来源:EmailController.class.php

示例2: handleException

 /**
  * {@inheritDoc}
  */
 public function handleException(\Exception $e)
 {
     $refl = new \ReflectionClass($e);
     if ($e instanceof HttpExceptionInterface) {
         $title = sprintf('%s::%s', $refl->getShortName(), $e->getErrorType());
         $detail = $e->getMessage();
         $status = $e->getHttpCode();
     } else {
         $title = $refl->getShortName();
         $detail = 'Oh no! Something bad happened on the server! Please try again.';
         $status = 500;
     }
     $serialized = $this->getSerializer()->serializeError($title, $detail, $status);
     $payload = new Rest\RestPayload($serialized);
     return $this->createRestResponse($status, $payload);
 }
开发者ID:as3io,项目名称:modlr,代码行数:19,代码来源:AbstractAdapter.php


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