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