deploymentFactoryManager.registerDeploymentFactory(
deploymentFactory);
return deploymentFactory;
} catch (ClassNotFoundException e) {
throw new InitializationException("cannot find class ["
+ command.getDeploymentFactoryManagerClassName() + "]", e);
} catch (InstantiationException e) {
throw new InitializationException("cannot instantiate class ["
+ command.getDeploymentFactoryManagerClassName() + "]", e);
} catch (IllegalAccessException e) {
throw new InitializationException("cannot initialize class ["
+ command.getDeploymentFactoryManagerClassName() + "]", e);
}
}