source: trunk/www.guidonia.net/wp/wp-content/plugins/tubepress/classes/net/sourceforge/phpcrafty/ComponentFactoryException.class.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 408 bytes
Line 
1<?php
2
3/**
4 * An exception thrown when an error occurs in the ComponentFactory/DI container.
5 * @author Chris Corbyn
6 * @package Crafty
7 */
8class net_sourceforge_phpcrafty_ComponentFactoryException extends Exception
9{
10
11 /**
12 * Create a new ComponentFactoryException with $message.
13 * @param string $message
14 */
15 public function __construct($message)
16 {
17 parent::__construct($message);
18 }
19
20}
Note: See TracBrowser for help on using the repository browser.