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


PHP sfException::__construct方法代码示例

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


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

示例1: __construct

 /**
  * Class constructor.
  *
  * @param string The error message
  * @param int    The error code
  */
 public function __construct($message = null, $code = 0)
 {
     if ($this->getName() === null) {
         $this->setName('deppPropelActAsLaunchableException');
     }
     parent::__construct($message, $code);
 }
开发者ID:valerio-bozzolan,项目名称:openparlamento,代码行数:13,代码来源:deppPropelActAsLaunchableException.class.php

示例2: __construct

 /**
  * Class constructor.
  *
  * @param string The error message
  * @param int    The error code
  */
 public function __construct($message = null, $code = 0)
 {
     if (method_exists($this, 'setName')) {
         $this->setName('sfWebBrowserInvalidResponseException');
     }
     parent::__construct($message, $code);
 }
开发者ID:auphau,项目名称:joyreactor,代码行数:13,代码来源:sfWebBrowserInvalidResponseException.class.php

示例3: __construct

 public function __construct($code, $message, $file, $line, $context = null)
 {
     parent::__construct($message, $code);
     $this->context = $context;
     $this->file = $file;
     $this->line = $line;
 }
开发者ID:royalterra,项目名称:pdns-gui,代码行数:7,代码来源:sfLegacyErrorException.class.php

示例4: __construct

 /**
  * Class constructor.
  *
  * @param string error message
  * @param int error code
  */
 public function __construct($message = null, $code = 0)
 {
     // Legacy support for 1.0
     if (method_exists($this, 'setName')) {
         $this->setName('sfImageTransformException');
     }
     parent::__construct($message, $code);
 }
开发者ID:thefkboss,项目名称:ZenTracker,代码行数:14,代码来源:sfImageTransformException.class.php

示例5: __construct

 /**
  * Class constructor.
  *
  * @param	string	the error message
  * @param	int		the error code
  */
 public function __construct($message = null, $code = 0)
 {
     // jme- removed this function. it doesnt exist
     // - in sfExceptions.php you can find
     //   - name    = get_class($exception);
     // $this->setName('sfDateTimeException');
     parent::__construct($message, $code);
 }
开发者ID:solutema,项目名称:siwapp-sf1,代码行数:14,代码来源:sfDateTimeException.class.php

示例6: __construct

 /**
  * Class constructor.
  *
  * @param string The error message
  * @param int    The error code
  */
 public function __construct($message = null, $code = 0)
 {
     $this->setName('sfStopException');
     // disable xdebug to avoid backtrace in error log
     if (function_exists('xdebug_disable')) {
         xdebug_disable();
     }
     parent::__construct($message, $code);
 }
开发者ID:taryono,项目名称:school,代码行数:15,代码来源:sfStopException.class.php

示例7: __construct

 /**
  *
  */
 public function __construct($message = null, $http_error_code = 0)
 {
     $this->setName('HttpException');
     try {
         sfContext::getInstance()->getLogger()->err($message);
     } catch (Exception $e) {
     }
     parent::__construct($message, $http_error_code);
 }
开发者ID:42medien,项目名称:spreadly,代码行数:12,代码来源:HttpException.php

示例8: __construct

 /**
  * Class constructor.
  *
  * @param string The error message
  * @param int    The error code
  */
 public function __construct($message = null, $code = 0)
 {
     parent::__construct($message, $code);
     $this->setName('sfContextException');
 }
开发者ID:jonphipps,项目名称:Metadata-Registry,代码行数:11,代码来源:sfContextException.class.php

示例9: __construct

 /**
  * Class constructor.
  *
  * @param string The error message
  * @param int    The error code
  */
 public function __construct($message = null, $code = 0)
 {
     $this->setName('sfError404Exception');
     parent::__construct($message, $code);
 }
开发者ID:taryono,项目名称:school,代码行数:11,代码来源:sfError404Exception.class.php

示例10: __construct

 public function __construct($message = null, $message_params = array(), $code = 0)
 {
     $this->setMessageParams($message_params);
     parent::__construct($message, $code);
 }
开发者ID:pycmam,项目名称:lyMediaManagerPlugin,代码行数:5,代码来源:lyMediaException.class.php

示例11:

 function __construct($token, $message)
 {
     $this->token = @$token;
     parent::__construct($message . (@$token ? " - [{$token}]\n" : ''));
 }
开发者ID:WIZARDISHUNGRY,项目名称:sflimetracker,代码行数:5,代码来源:limeException.php

示例12: __construct

 public function __construct($message = null, $code = 0)
 {
     $this->setName('sfDoctrineSchemaException');
     parent::__construct($message, $code);
 }
开发者ID:snouhaud,项目名称:camptocamp.org,代码行数:5,代码来源:sfDoctrineDatabaseSchema.class.php

示例13: __construct

 public function __construct($message = 'diem exception')
 {
     return parent::__construct(strip_tags($message));
 }
开发者ID:theolymp,项目名称:diem,代码行数:4,代码来源:dmException.class.php


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