[ Index ] |
|
Code source de Symfony 1.0.0 |
1 <?php 2 3 /* 4 * This file is part of the symfony package. 5 * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com> 6 * (c) 2004-2006 Sean Kerr. 7 * 8 * For the full copyright and license information, please view the LICENSE 9 * file that was distributed with this source code. 10 */ 11 12 /** 13 * sfRenderException is thrown when a view's pre-render check fails. 14 * 15 * @package symfony 16 * @subpackage exception 17 * @author Fabien Potencier <fabien.potencier@symfony-project.com> 18 * @author Sean Kerr <skerr@mojavi.org> 19 * @version SVN: $Id: sfRenderException.class.php 3243 2007-01-12 14:22:50Z fabien $ 20 */ 21 class sfRenderException extends sfException 22 { 23 /** 24 * Class constructor. 25 * 26 * @param string The error message 27 * @param int The error code 28 */ 29 public function __construct($message = null, $code = 0) 30 { 31 $this->setName('sfRenderException'); 32 parent::__construct($message, $code); 33 } 34 }
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Fri Mar 16 22:42:14 2007 | par Balluche grâce à PHPXref 0.7 |