Source code for astrophot.errors.base

__all__ = ("AstroPhotError", "SpecificationConflict")


[docs] class AstroPhotError(Exception): """ Base exception for all AstroPhot processes. """
[docs] class SpecificationConflict(AstroPhotError): """ Raised when the inputs to an object are conflicting and/or ambiguous """