| 242 | } |
| 243 | |
| 244 | void Command::FirePostExecuteFailure(const ExecutionException* e) |
| 245 | { |
| 246 | // Debugging output |
| 247 | if (DEBUG_COMMAND_EXECUTION) |
| 248 | { |
| 249 | CommandTracing::PrintTrace("COMMANDS", "execute" + CommandTracing::SEPARATOR |
| 250 | + "failure: id=" + this->GetId() + "; exception=" + e->what()); |
| 251 | } |
| 252 | |
| 253 | executionEvents.postExecuteFailure(this->GetId(), e); |
| 254 | } |
| 255 | |
| 256 | void Command::FirePostExecuteSuccess(const Object::Pointer returnValue) |
| 257 | { |
no test coverage detected