aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVasily Gerasimov <UgnineSirdis@gmail.com>2022-02-22 01:28:44 +0300
committerVasily Gerasimov <UgnineSirdis@gmail.com>2022-02-22 01:28:44 +0300
commitea5248331376fda9285c5786e5e7508be149acdf (patch)
tree7a647cb0f0be3833623f1b5bd65f42fcf1441b35
parent168167c16a2620ff73bb537bcddc58782122eeb3 (diff)
downloadydb-ea5248331376fda9285c5786e5e7508be149acdf.tar.gz
YQ-863 Catch std::exception instead of yexception in CA
ref:a6bc8595c912433ddcb0b79f619075c9aaff991f
-rw-r--r--ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h
index 14c7352fec..69b1667ae7 100644
--- a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h
+++ b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h
@@ -108,7 +108,7 @@ public:
<< "Mkql memory limit exceeded, limit: " << MkqlMemoryLimit
<< ", host: " << HostName()
<< ", canAllocateExtraMemory: " << CanAllocateExtraMemory);
- } catch (const yexception& e) {
+ } catch (const std::exception& e) {
InternalError(TIssuesIds::DEFAULT_ERROR, e.what());
}
@@ -210,7 +210,7 @@ protected:
<< "Mkql memory limit exceeded, limit: " << MkqlMemoryLimit
<< ", host: " << HostName()
<< ", canAllocateExtraMemory: " << CanAllocateExtraMemory);
- } catch (const yexception& e) {
+ } catch (const std::exception& e) {
InternalError(TIssuesIds::DEFAULT_ERROR, e.what());
}