Source code for astrophot.errors.base
__all__ = ("AstroPhotError", "NameNotAllowed", "SpecificationConflict")
[docs]
class NameNotAllowed(AstroPhotError):
"""
Used for invalid names of AstroPhot objects
"""
...
[docs]
class SpecificationConflict(AstroPhotError):
"""
Raised when the inputs to an object are conflicting and/or ambiguous
"""
...