| 100 | } |
| 101 | |
| 102 | explicit wrapexcept( E const & e, boost::source_location const & loc ): E( e ) |
| 103 | { |
| 104 | copy_from( &e ); |
| 105 | |
| 106 | set_info( *this, throw_file( loc.file_name() ) ); |
| 107 | set_info( *this, throw_line( loc.line() ) ); |
| 108 | set_info( *this, throw_function( loc.function_name() ) ); |
| 109 | set_info( *this, throw_column( loc.column() ) ); |
| 110 | } |
| 111 | |
| 112 | virtual boost::exception_detail::clone_base const * clone() const BOOST_OVERRIDE |
| 113 | { |
nothing calls this directly
no test coverage detected