| 25 | namespace filesystem { |
| 26 | |
| 27 | BOOST_FILESYSTEM_DECL filesystem_error::filesystem_error(const char* what_arg, system::error_code ec) : |
| 28 | system::system_error(ec, what_arg) |
| 29 | { |
| 30 | try |
| 31 | { |
| 32 | m_imp_ptr.reset(new impl()); |
| 33 | } |
| 34 | catch (...) |
| 35 | { |
| 36 | m_imp_ptr.reset(); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | BOOST_FILESYSTEM_DECL filesystem_error::filesystem_error(std::string const& what_arg, system::error_code ec) : |
| 41 | system::system_error(ec, what_arg) |
nothing calls this directly
no outgoing calls
no test coverage detected