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


PHP AJXP_XMLWriter::catchError方法代码示例

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


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

示例1: catchException

 /**
  * Catch exceptions, @see catchError
  * @param Exception $exception
  */
 public static function catchException($exception)
 {
     try {
         AJXP_XMLWriter::catchError($exception->getCode(), SystemTextEncoding::fromUTF8($exception->getMessage()), $exception->getFile(), $exception->getLine(), $exception);
     } catch (Exception $innerEx) {
         error_log(get_class($innerEx) . " thrown within the exception handler!");
         error_log("Original exception was: " . $innerEx->getMessage() . " in " . $innerEx->getFile() . " on line " . $innerEx->getLine());
         error_log("New exception is: " . $innerEx->getMessage() . " in " . $innerEx->getFile() . " on line " . $innerEx->getLine() . " " . $innerEx->getTraceAsString());
         print "Error";
     }
 }
开发者ID:Nanomani,项目名称:pydio-core,代码行数:15,代码来源:class.AJXP_XMLWriter.php

示例2: fput_quota_hack

 public static function fput_quota_hack($errno, $errstr, $errfile, $errline, $errcontext)
 {
     if (strpos($errstr, "Opening BINARY mode data connection") !== false) {
         $errstr = "Transfer failed. Please check available disk space (quota)";
     }
     AJXP_XMLWriter::catchError($errno, $errstr, $errfile, $errline, $errcontext);
 }
开发者ID:thermalpaste,项目名称:pydio-core,代码行数:7,代码来源:class.ftpAccessWrapper.php

示例3: catchException

 /**
  * Catch exceptions
  *
  * @param Exception $exception
  */
 static function catchException($exception)
 {
     AJXP_XMLWriter::catchError($exception->getCode(), SystemTextEncoding::fromUTF8($exception->getMessage()), $exception->getFile(), $exception->getLine(), null);
 }
开发者ID:BackupTheBerlios,项目名称:ascore,代码行数:9,代码来源:class.AJXP_XMLWriter.php

示例4: catchException

 /**
  * Catch exceptions
  *
  * @param Exception $exception
  */
 function catchException($exception)
 {
     AJXP_XMLWriter::catchError($exception->getCode(), $exception->getMessage(), $exception->getFile(), $exception->getLine(), null);
 }
开发者ID:umbecr,项目名称:camilaframework,代码行数:9,代码来源:class.AJXP_XMLWriter.php

示例5: catchException

 /**
  * Catch exceptions, @see catchError
  * @param Exception $exception
  */
 static function catchException($exception)
 {
     try {
         AJXP_XMLWriter::catchError($exception->getCode(), SystemTextEncoding::fromUTF8($exception->getMessage()), $exception->getFile(), $exception->getLine(), null);
     } catch (Exception $innerEx) {
         print get_class($innerEx) . " thrown within the exception handler! Message was: " . $innerEx->getMessage() . " in " . $innerEx->getFile() . " on line " . $innerEx->getLine() . " " . $innerEx->getTraceAsString();
     }
 }
开发者ID:crodriguezn,项目名称:administrator-files,代码行数:12,代码来源:class.AJXP_XMLWriter.php


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