1
2class Exception:
3    """
4    An exception class to throw for errors detected at runtime.
5
6    .. warning::
7       All functions in the Config class can potentially throw this exception.
8    """
9    def __init__(self):
10        pass
11
12