| 846 | |
| 847 | template <typename T> |
| 848 | inline void TPromise<T>::SetException(const TString& e) { |
| 849 | EnsureInitialized(); |
| 850 | State->SetException(std::make_exception_ptr(yexception() << e)); |
| 851 | } |
| 852 | |
| 853 | template <typename T> |
| 854 | inline void TPromise<T>::SetException(std::exception_ptr e) { |
no test coverage detected