From b6ba6d314ad8f764daa5ea8a2774c69439093c77 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Tue, 24 Jul 2012 18:08:10 +0900 Subject: Refactor into submodules Data models, events, errors, and stream handler are split from the single module into submodules. Change-Id: I03537c5e268135966c6b6e77ecaca1cb579a5fde --- pygerrit/error.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pygerrit/error.py (limited to 'pygerrit/error.py') diff --git a/pygerrit/error.py b/pygerrit/error.py new file mode 100644 index 0000000..51ab039 --- /dev/null +++ b/pygerrit/error.py @@ -0,0 +1,5 @@ +""" Error classes. """ + + +class GerritError(Exception): + ''' Raised when something goes wrong in Gerrit handling. ''' -- cgit v1.2.1