blob: b8a37ce74ab3819fc6791aac5a0dca12002df9ba (
plain)
1
2
3
4
5
6
7
|
class ServerError (Exception):
""" A custom exception which is raised by the test servers. Often used to
handle control flow. """
def __init__ (self, err_message):
self.err_message = err_message
|