SeaCogs/bible/errors.py
SeaswimmerTheFsh 8da6f0d8de
All checks were successful
Actions / Lint Code (Pylint) (push) Successful in 16s
Actions / Build Documentation (MkDocs) (push) Successful in 12s
fix(bible): added error message for if a passage cannot be found
2024-02-01 19:25:02 -05:00

10 lines
124 B
Python

class BibleAccessError(Exception):
pass
class Unauthorized(Exception):
pass
class NotFound(Exception):
pass