CellNOpt homepage|cellnopt 0.1.3 documentation

Source code for cno.misc.tools

__all__ = ["CNOError"]
    

[docs]class CNOError(Exception): """A simple exception related to CellNOpt""" def __init__(self, value): self.value = value def __str__(self): return repr(self.value)