2 #include "common/Exception.h"
3 #include "monitor/Coordinator.h"
5 int main(int argc
, char *argv
[]) {
7 Monitor::Coordinator
coordinator(argv
);
9 return coordinator
.returnValue();
11 catch(Common::Exception exception
) {
12 std::cout
<< exception
.message() << std::endl
;