Mercurial > p > roundup > code
changeset 7172:e16b7d47fdb2
chore: flake8 formatting fixes
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 26 Feb 2023 10:34:07 -0500 |
| parents | 4e3abaa16296 |
| children | 5159d8ea585a |
| files | roundup/exceptions.py |
| diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/exceptions.py Sat Feb 25 18:05:05 2023 -0500 +++ b/roundup/exceptions.py Sun Feb 26 10:34:07 2023 -0500 @@ -7,6 +7,7 @@ class RoundupException(Exception): pass + class LoginError(RoundupException): pass @@ -14,9 +15,11 @@ class Unauthorised(RoundupException): pass + class RejectBase(RoundupException): pass + class Reject(RejectBase): """An auditor may raise this exception when the current create or set operation should be stopped.
