Source code for pyMelt.core

[docs]class Error(Exception): """Base class for exceptions in this module.""" pass
[docs]class InputError(Error): """Exception raised for errors in the input. Attributes: expression -- input expression in which the error occurred message -- explanation of the error """ def __init__(self, message): self.message = message
[docs]class ConvergenceError(Error): """Exception raised for errors in converging. Attributes: expression -- input expression in which the error occurred message -- explanation of the error """ def __init__(self, message): self.message = message