Source code for mss.exceptions

"""
Collection of exceptions which can be raised by the MSS.
"""


[docs]class MSSException(Exception): """ Base class for MSS exceptions. """ pass
[docs]class InvalidConfiguration(MSSException): """ Indicates that the given configuration for the MSS is invalid. """ pass
[docs]class SwiftException(MSSException): """ Indicate that Swift has produced an error. """ pass