From 175a05f4de17918b74bde7f554182968b1f6aabb Mon Sep 17 00:00:00 2001 From: Avital Fine <79420960+AvitalFineRedis@users.noreply.github.com> Date: Tue, 30 Nov 2021 17:47:25 +0100 Subject: Adding RedisGraph support (#1673) Co-authored-by: Chayim I. Kirshen --- redis/commands/graph/exceptions.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 redis/commands/graph/exceptions.py (limited to 'redis/commands/graph/exceptions.py') diff --git a/redis/commands/graph/exceptions.py b/redis/commands/graph/exceptions.py new file mode 100644 index 0000000..4bbac10 --- /dev/null +++ b/redis/commands/graph/exceptions.py @@ -0,0 +1,3 @@ +class VersionMismatchException(Exception): + def __init__(self, version): + self.version = version -- cgit v1.2.1