Source code for vivarium.framework.population.exceptions

"""
================================
Population Management Exceptions
================================

Errors related to the mishandling of the simulation state table.
"""

from vivarium.exceptions import VivariumError


[docs] class PopulationError(VivariumError): """Error raised when the population is invalidly queried or updated.""" pass