aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/tvmauth/exception.h
diff options
context:
space:
mode:
authoralexnick <alexnick@yandex-team.ru>2022-02-17 14:23:34 +0300
committeralexnick <alexnick@yandex-team.ru>2022-02-17 14:23:34 +0300
commitfd03a905d0671edeffde43ade486dc608bf69d95 (patch)
treed01659ada27349df9be25f8a8d5dab4f9ec4cd12 /library/cpp/tvmauth/exception.h
parent3dba88133a0e2bf63394fdba2affc51a771eff03 (diff)
downloadydb-fd03a905d0671edeffde43ade486dc608bf69d95.tar.gz
remove tvm dependecy KIKIMR-14386
ref:d40a6e54d3da55ed1f9c9a0763552940acb0988b
Diffstat (limited to 'library/cpp/tvmauth/exception.h')
-rw-r--r--library/cpp/tvmauth/exception.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/library/cpp/tvmauth/exception.h b/library/cpp/tvmauth/exception.h
deleted file mode 100644
index f528886b954..00000000000
--- a/library/cpp/tvmauth/exception.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-#include <util/generic/yexception.h>
-
-#include <exception>
-
-namespace NTvmAuth {
- class TTvmException: public yexception {
- };
- class TContextException: public TTvmException {
- };
- class TMalformedTvmSecretException: public TContextException {
- };
- class TMalformedTvmKeysException: public TContextException {
- };
- class TEmptyTvmKeysException: public TContextException {
- };
- class TNotAllowedException: public TTvmException {
- };
-}