| 59 | template <class TValue> |
| 60 | requires CNestable<TValue> |
| 61 | TSimpleException operator<< (TValue&& value) const & |
| 62 | { |
| 63 | return TSimpleException(*this) << std::forward<TValue>(value); |
| 64 | } |
| 65 | |
| 66 | private: |
| 67 | const std::exception_ptr InnerException_; |
nothing calls this directly
no test coverage detected