8{
9 try {
10
12
14
15 return 0;
16 }
19 }
20 catch (std::exception& e) {
21 std::cerr << e.what() << std::endl;
22 return 1;
23 }
24 catch (...) {
25 std::cerr << "Exception occurred!" << std::endl;
26 return 1;
27 }
28}
The base exception class to derive Utopia-specific exceptions from.
Definition exceptions.hh:15
void run()
Run the model from the current time to the maximum time.
Definition model.hh:581
PredatorPrey Model on grid cells.
Definition PredatorPrey.hh:94
A class to use at the top level of the model hierarchy as a mock parent.
Definition model.hh:1017
int handle_exception(exc_t &exc)
A helper function to handle a Utopia-specific exception.
Definition exceptions.hh:140