diff options
Diffstat (limited to 'modules/redis.cpp')
-rw-r--r-- | modules/redis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/redis.cpp b/modules/redis.cpp index 4e006c9ff..fbaa3bff5 100644 --- a/modules/redis.cpp +++ b/modules/redis.cpp @@ -237,7 +237,7 @@ public: void StartTransaction() override { if (in_transaction) - throw CoreException(); + throw ModuleException("Tried to start a transaction while one was already in progress"); this->SendCommand(NULL, "MULTI"); in_transaction = true; |