* (c) 2004-2006 Sean Kerr. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * sfAutoloadException is thrown when a class that has been required cannot be loaded. * * @package symfony * @subpackage exception * @author Fabien Potencier * @author Sean Kerr * @version SVN: $Id: sfAutoloadException.class.php 3243 2007-01-12 14:22:50Z fabien $ */ class sfAutoloadException extends sfException { /** * Class constructor. * * @param string The error message * @param int The error code */ public function __construct($message = null, $code = 0) { $this->setName('sfAutoloadException'); parent::__construct($message, $code); } }