* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * sfComponents. * * @package symfony * @subpackage action * @author Fabien Potencier * @version SVN: $Id: sfComponents.class.php 20048 2009-07-09 09:53:03Z FabianLange $ */ abstract class sfComponents extends sfComponent { /** * @throws sfInitializationException * * @see sfComponent */ public function execute($request) { throw new sfInitializationException('sfComponents initialization failed.'); } }