~charon-developers/charon-core/trunk

« back to all changes in this revision

Viewing changes to src/PluginManager.cpp

  • Committer: jmgottfried
  • Date: 2010-02-15 16:53:47 UTC
  • Revision ID: svn-v4:7d56a235-2f8b-4627-957e-5f30cc86da59:charon-core/trunk:557
added standalone command line charon workflow executor

Show diffs side-by-side

added added

removed removed

Lines of Context:
357
357
                        targetPoints[i]->execute();
358
358
                }
359
359
        } else {
360
 
                throw AbstractPluginLoader::PluginException("Could not execute "
361
 
                        "workflow: The target point is invalid or not set. Please "
362
 
                        "check the global.targetpoint parameter of the parameter file.",
363
 
                                "unknown", AbstractPluginLoader::PluginException::OTHER);
 
360
                throw AbstractPluginLoader::PluginException(
 
361
                        "Could not execute workflow:\n\t"
 
362
                        "No valid target point found.\n\tPlease check if "
 
363
                        "all required plugins could be loaded,\n\tthen check if this is "
 
364
                        "a valid parameter file.", "unknown",
 
365
                        AbstractPluginLoader::PluginException::OTHER);
364
366
        }
365
367
}
366
368