blob: 809369d843fd72c9e6a6305c7716d2dc99bde94b (
plain) (
blame)
1
2
3
4
5
6
7
  | 
#include "future.h"
namespace NThreading::NImpl {
    [[noreturn]] void ThrowFutureException(TStringBuf message, const TSourceLocation& source) {
        throw source + TFutureException() << message;
    }
}
  |