Source code for astrophot.errors.fit

from .base import AstroPhotError

__all__ = ("OptimizeStop", )

[docs] class OptimizeStop(AstroPhotError): """ Raised at any point to stop optimization process. """ pass