blob: 6f88cdf6d86ceea8a033443994bf0f77bf8fb62c [file] [log] [blame]
#!/usr/bin/python
#
# Copyright 2007 Google Inc. Released under the GPL v2
"""Exceptions deliberatly thrown by autoserv
"""
__author__ = """[email protected] (Martin J. Bligh),
[email protected] (Benjamin Poirier),
[email protected] (Ryan Stutsman)"""
class AutoservError(Exception):
pass
class AutoservRunError(AutoservError):
"""Errors raised by one of the run functions"""
pass
class AutoservVirtError(AutoservError):
"""Vitualization related error"""
pass