| 7291 | } |
| 7292 | |
| 7293 | std::string ExceptionTranslatorRegistry::tryTranslators() const { |
| 7294 | if( m_translators.empty() ) |
| 7295 | std::rethrow_exception(std::current_exception()); |
| 7296 | else |
| 7297 | return m_translators[0]->translate( m_translators.begin()+1, m_translators.end() ); |
| 7298 | } |
| 7299 | } |
| 7300 | // end catch_exception_translator_registry.cpp |
| 7301 | // start catch_fatal_condition.cpp |