19 lines
489 B
Python
19 lines
489 B
Python
"""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 <me@lucasjavaudin.com>, 2021
|
|
|
|
|
|
class MetroIOError(Exception):
|
|
"""Error reading or writing a file."""
|
|
|
|
|
|
class MetroInputError(Exception):
|
|
"""Bad format of input file."""
|
|
|
|
|
|
class MetroUnsupportedError(Exception):
|
|
"""Unsupported feature."""
|