diff options
author | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2024-11-30 22:18:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-30 22:18:35 +0000 |
commit | b2a5d3a720980a7304cdf814082ebed47bbf1191 (patch) | |
tree | 7ee20fb54151a1468759da4feee3de61f013ff7d /yt/yt/core/misc/stripped_error.h | |
parent | 7466d62733bffe5cb040f37b21c5a9a4ad174353 (diff) | |
parent | b4cba2872f6348770b561394bef1668f54abfe27 (diff) | |
download | ydb-b2a5d3a720980a7304cdf814082ebed47bbf1191.tar.gz |
Merge pull request #12156 from ydb-platform/mergelibs-241130-1815
Library import 241130-1815
Diffstat (limited to 'yt/yt/core/misc/stripped_error.h')
-rw-r--r-- | yt/yt/core/misc/stripped_error.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/yt/yt/core/misc/stripped_error.h b/yt/yt/core/misc/stripped_error.h index ad985394b8..6dd7b4b87e 100644 --- a/yt/yt/core/misc/stripped_error.h +++ b/yt/yt/core/misc/stripped_error.h @@ -60,25 +60,6 @@ void FormatValue(TStringBuilderBase* builder, TErrorCode code, TStringBuf spec); //////////////////////////////////////////////////////////////////////////////// -struct TErrorAttribute -{ - template <class T> - TErrorAttribute(const TString& key, const T& value) - : Key(key) - , Value(NYson::ConvertToYsonString(value)) - { } - - TErrorAttribute(const TString& key, const NYson::TYsonString& value) - : Key(key) - , Value(value) - { } - - TString Key; - NYson::TYsonString Value; -}; - -//////////////////////////////////////////////////////////////////////////////// - template <class TValue> concept CErrorNestable = requires (TError& error, TValue&& operand) { |