Code cleanups, deprecated classes renamed
[core.git] / inc / classes / main / factories / objects / class_ObjectFactory.php
index e3be9d289cd998ca81f0622cff12f2f5a8507498..4a6f0d42c7324fce4d77c9b83bf08dd4b3897886 100644 (file)
@@ -45,7 +45,7 @@ class ObjectFactory extends BaseFactory {
         * @param       $className                      Name of the class we shall construct
         * @param       $args                           Arguments in an indexed array
         * @return      $objectInstance         An instance of the requested object
-        * @throws      ClassNotFoundException  If the requested class was not found
+        * @throws      NoClassException        If the requested class was not found
         * @throws      EmptyVariableException  If a variable is empty unexpectly
         */
        public final static function createObjectByName ($className, array $args=array()) {
@@ -58,7 +58,7 @@ class ObjectFactory extends BaseFactory {
                        throw new EmptyVariableException(array($factoryInstance, 'className'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
                } elseif (!class_exists($className)) {
                        // Then throw an exception
-                       throw new ClassNotFoundException(array($factoryInstance, $className), self::EXCEPTION_CLASS_NOT_FOUND);
+                       throw new NoClassException(array($factoryInstance, $className), self::EXCEPTION_CLASS_NOT_FOUND);
                }
 
                // Create method name