| 231 | } |
| 232 | |
| 233 | void Command::FireNotHandled(const NotHandledException* e) |
| 234 | { |
| 235 | // Debugging output |
| 236 | if (DEBUG_COMMAND_EXECUTION) { |
| 237 | CommandTracing::PrintTrace("COMMANDS", "execute" + CommandTracing::SEPARATOR |
| 238 | + "not handled: id=" + this->GetId() + "; exception=" + e->what()); |
| 239 | } |
| 240 | |
| 241 | executionEvents.notHandled(this->GetId(), e); |
| 242 | } |
| 243 | |
| 244 | void Command::FirePostExecuteFailure(const ExecutionException* e) |
| 245 | { |
no test coverage detected