[ Index ]
 

Code source de Symfony 1.0.0

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/lib/exception/ -> sfInitializationException.class.php (source)

   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   * sfInitializationException is thrown when an initialization procedure 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: sfInitializationException.class.php 3243 2007-01-12 14:22:50Z fabien $
  20   */
  21  class sfInitializationException 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('sfInitializationException');
  32      parent::__construct($message, $code);
  33    }
  34  }


Généré le : Fri Mar 16 22:42:14 2007 par Balluche grâce à PHPXref 0.7