From 4edab67c61692c22d69a1dfb942e2f662b175dd3 Mon Sep 17 00:00:00 2001 From: Myned Date: Mon, 20 Nov 2017 11:39:39 -0500 Subject: [PATCH] Added __init__ for hearted task --- src/main/misc/exceptions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/misc/exceptions.py b/src/main/misc/exceptions.py index 7959441..ecdcb1b 100644 --- a/src/main/misc/exceptions.py +++ b/src/main/misc/exceptions.py @@ -39,7 +39,8 @@ class Right(Exception): class Save(Exception): - pass + def __init__(self, user): + self.user = user class GoTo(Exception):