Mercurial > p > roundup > code
diff roundup/exceptions.py @ 6005:292c9dfd06bd
flake8 formatting fixes.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 28 Dec 2019 13:01:34 -0500 |
| parents | 32f95ec6bd8e |
| children | c177e7128dc9 |
line wrap: on
line diff
--- a/roundup/exceptions.py Sat Dec 28 13:01:14 2019 -0500 +++ b/roundup/exceptions.py Sat Dec 28 13:01:34 2019 -0500 @@ -3,12 +3,15 @@ __docformat__ = 'restructuredtext' + class LoginError(BaseException): pass + class Unauthorised(BaseException): pass + class Reject(BaseException): """An auditor may raise this exception when the current create or set operation should be stopped.
