*/
private CategoryVO getRootCategory(final String path) throws WorkflowException
{
try
{
final CategoryVO categoryVO = CategoryController.getController().findByPath(path, getDatabase());
return CategoryController.getController().findWithChildren(categoryVO.getId(), getDatabase());
}
catch(Exception e)
{
e.printStackTrace();
throw new WorkflowException("SimpleCategoryProvider.getRootCategory() : " + e);