"""This module contains the exceptions of MetroSim. """ # Copyright Lucas Javaudin - All Rights Reserved # Unauthorized copying of this file, via any medium is strictly prohibited # Proprietary and confidential # Written by Lucas Javaudin , 2021 class MetroIOError(Exception): """Error reading or writing a file.""" class MetroInputError(Exception): """Bad format of input file.""" class MetroUnsupportedError(Exception): """Unsupported feature."""