From 5656a24c9638e1715cc31820774b10b1b01f9982 Mon Sep 17 00:00:00 2001 From: jbajic Date: Tue, 15 Nov 2022 18:25:25 +0100 Subject: [PATCH] Remove unused exception --- src/query/v2/exceptions.hpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/query/v2/exceptions.hpp b/src/query/v2/exceptions.hpp index 959672eae..e0802a6cc 100644 --- a/src/query/v2/exceptions.hpp +++ b/src/query/v2/exceptions.hpp @@ -224,12 +224,4 @@ class VersionInfoInMulticommandTxException : public QueryException { : QueryException("Version info query not allowed in multicommand transactions.") {} }; -/** - * An exception for an illegal operation that violates schema - */ -class SchemaViolationException : public QueryRuntimeException { - public: - using QueryRuntimeException::QueryRuntimeException; -}; - } // namespace memgraph::query::v2