diff options
author | prime <prime@yandex-team.com> | 2022-08-29 17:04:03 +0300 |
---|---|---|
committer | prime <prime@yandex-team.com> | 2022-08-29 17:04:03 +0300 |
commit | 44b551befb68eebdae64f7581e211e9e8360474d (patch) | |
tree | b315c77d84c4aa534e4e0126d354ccc8faa0c292 /library/cpp/streams/lz/common/error.h | |
parent | 5fd371abc806e687416ef7d93138c414001f1f85 (diff) | |
download | ydb-44b551befb68eebdae64f7581e211e9e8360474d.tar.gz |
Split library/cpp/streams/lz into separate codecs
Diffstat (limited to 'library/cpp/streams/lz/common/error.h')
-rw-r--r-- | library/cpp/streams/lz/common/error.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/library/cpp/streams/lz/common/error.h b/library/cpp/streams/lz/common/error.h new file mode 100644 index 0000000000..371945d5b4 --- /dev/null +++ b/library/cpp/streams/lz/common/error.h @@ -0,0 +1,6 @@ +#pragma once + +#include <util/generic/yexception.h> + +struct TDecompressorError: public yexception { +}; |