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


PHP Exception::show方法代码示例

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


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

示例1: SimpleSAML_exception_handler

function SimpleSAML_exception_handler(Exception $exception)
{
    if ($exception instanceof SimpleSAML_Error_Error) {
        $exception->show();
    } else {
        $e = new SimpleSAML_Error_Error('UNHANDLEDEXCEPTION', $exception);
        $e->show();
    }
}
开发者ID:williamamed,项目名称:Raptor2,代码行数:9,代码来源:_include.php

示例2: handleException

/**
 * Calls the show method on the given exception.
 *
 * @param	Exception	$e
 */
function handleException(\Exception $e) {
	if ($e instanceof IPrintableException || $e instanceof \wcf\system\exception\IPrintableException) {
		$e->show();
		exit;
	}
	
	print $e;
}
开发者ID:0xLeon,项目名称:WCF,代码行数:13,代码来源:install.php

示例3: handleException

 /**
  * Calls the show method on the given exception.
  *
  * @param	\Exception	$e
  */
 public static final function handleException(\Exception $e)
 {
     if ($e instanceof exception\IPrintableException) {
         $e->show();
         exit;
     }
     // repack Exception
     self::handleException(new exception\SystemException($e->getMessage(), $e->getCode(), '', $e));
 }
开发者ID:ZerGabriel,项目名称:WCF,代码行数:14,代码来源:WCF.class.php

示例4: handleException

 /**
  * Calls the show method on the given exception.
  * 
  * @param	\Exception	$e
  */
 public static final function handleException(\Exception $e)
 {
     try {
         if ($e instanceof SystemException) {
             $e->show();
             exit;
         }
         // repack Exception
         self::handleException(new SystemException($e->getMessage(), $e->getCode(), '', $e));
     } catch (\Exception $exception) {
         die("<pre>DNS::handleException() Unhandled exception: " . $exception->getMessage() . "\n\n" . $exception->getTraceAsString());
     }
 }
开发者ID:cengjing,项目名称:Domain-Control-Panel,代码行数:18,代码来源:DNS.class.php

示例5: handleException

 /**
  * Calls the show method on the given exception.
  * 
  * @param	Exception	$e	
  */
 public static final function handleException(Exception $e)
 {
     if ($e instanceof PrintableException) {
         $e->show();
         exit;
     }
     print $e;
 }
开发者ID:joaocustodio,项目名称:EmuDevstore-1,代码行数:13,代码来源:WCF.class.php


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