Source code for pynedm.exception

[docs]class PynEDMException(Exception): """ General exception for :mod:`pynedm` """
[docs]class CommandCollision(PynEDMException): """ :func:`pynedm.utils.listen` was called on a database where particular commands were already being used. """
[docs]class PynEDMNoFile(PynEDMException): """ File does not exist. """
[docs]class CommandError(PynEDMException): """ Command not correct """