blob: 9f826d6564fa0f68ab3b3d4e8b9ffa171b6f65a2 [file] [log] [blame]
'''Module that contains TestSuiteException.'''
class TestSuiteException(Exception):
'''Exception that is thrown whenever an internal error is encountered.
Just contains a message.
'''
pass
class DisconnectedException(Exception):
'''Exception that is thrown if lldb-server unexpectedly disconnected.
Just contains a message.
'''
pass