diff options
author | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2013-10-11 20:39:01 (GMT) |
---|---|---|
committer | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2013-10-11 20:39:01 (GMT) |
commit | ff5f678aca1aa42d7971b9b5c537286714c805e3 (patch) | |
tree | f9c2fd60561cb744c0924a85504ceb4dddbdadff /src/uscxml | |
parent | ef551cb937956e2c13570ab3f8f119c48fa5656e (diff) | |
download | uscxml-ff5f678aca1aa42d7971b9b5c537286714c805e3.zip uscxml-ff5f678aca1aa42d7971b9b5c537286714c805e3.tar.gz uscxml-ff5f678aca1aa42d7971b9b5c537286714c805e3.tar.bz2 |
Reactivated cotire and some bug-fixes
Diffstat (limited to 'src/uscxml')
-rw-r--r-- | src/uscxml/Factory.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/uscxml/Factory.cpp b/src/uscxml/Factory.cpp index d73e25d..6758e19 100644 --- a/src/uscxml/Factory.cpp +++ b/src/uscxml/Factory.cpp @@ -132,6 +132,10 @@ Factory::Factory() { DataModelImpl* dataModel = (*it)->create(); registerDataModel(dataModel); } + } else { + LOG(ERROR) << "No path to plugins known, export USCXML_PLUGIN_PATH or pass path as parameter"; + Event e; + throw e; } #else #if 1 |