"""Classes for handling unexpected Api response.""" class IntermittentException(Exception): """Exception for errors that could be solved by waiting.""" class PersistentException(Exception): """Exception for errors that won't be solved by waiting."""