#!/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 |