Base exception for flashcards module
| 1 | class FlashcardsException(Exception): |
| 2 | """Base exception for flashcards module""" |
| 3 | |
| 4 | pass |
| 5 | |
| 6 | |
| 7 | class EmptyCollectionError(FlashcardsException): |
nothing calls this directly
no outgoing calls
no test coverage detected