add msg attribute to ProjectError class

Signed-off-by: Anton Simernia <anton.simernya@gmail.com>
This commit is contained in:
Anton Simernia 2016-05-09 18:15:32 +07:00
parent f1603a3ee2
commit 4b01f6dcd6
1 changed files with 2 additions and 1 deletions

View File

@ -539,4 +539,5 @@ class NoSuchService(Exception):
class ProjectError(Exception): class ProjectError(Exception):
pass def __init__(self, msg):
self.msg = msg