aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/yson_string
diff options
context:
space:
mode:
authorarkady-e1ppa <arkady-e1ppa@yandex-team.com>2024-03-28 09:47:08 +0300
committerarkady-e1ppa <arkady-e1ppa@yandex-team.com>2024-03-28 09:58:54 +0300
commit48212452a70da88a5e4b814979dd82f22379801f (patch)
tree87a66bb909eadcdbb474e0e406de207db98c6701 /library/cpp/yt/yson_string
parent8deb352c61c1e941cac7c21b303a5d26f63c03af (diff)
downloadydb-48212452a70da88a5e4b814979dd82f22379801f.tar.gz
YT-21233: Remove TSimpleException and teach TCompositeException storing simple attributes
Expand the CompositeException 9a10ec65bfc1df854e03bb3a4d8d0a0c0e4a3a5d
Diffstat (limited to 'library/cpp/yt/yson_string')
-rw-r--r--library/cpp/yt/yson_string/convert.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/yt/yson_string/convert.h b/library/cpp/yt/yson_string/convert.h
index 3c2cc7d284..06de28d2f9 100644
--- a/library/cpp/yt/yson_string/convert.h
+++ b/library/cpp/yt/yson_string/convert.h
@@ -69,10 +69,10 @@ TYsonString ConvertToYsonString<TGuid>(const TGuid& value);
// Note: these currently support a subset of NYT::NYTree::Convert features.
class TYsonLiteralParseException
- : public TCompositeException
+ : public TSimpleException
{
public:
- using TCompositeException::TCompositeException;
+ using TSimpleException::TSimpleException;
};
template <>