Base class for all exceptions raised by the pytz library
| 9 | |
| 10 | |
| 11 | class Error(Exception): |
| 12 | '''Base class for all exceptions raised by the pytz library''' |
| 13 | |
| 14 | |
| 15 | class UnknownTimeZoneError(KeyError, Error): |
nothing calls this directly
no outgoing calls
no test coverage detected