diff options
author | Ed Leafe <ed@leafe.com> | 2011-01-14 07:49:41 +0000 |
---|---|---|
committer | Tarmac <> | 2011-01-14 07:49:41 +0000 |
commit | 9fb1e7b1f627b10fda1249754e4bc612d697110c (patch) | |
tree | 0876e5de69ff6d0f0c40a93759f939081c65c451 /nova/exception.py | |
parent | 8a4eb03ec32144381e8defa791e923675a1c2314 (diff) | |
parent | 01a1ad3d2cdf61c73ca3ab7aa14e82f0e4450103 (diff) | |
download | nova-9fb1e7b1f627b10fda1249754e4bc612d697110c.tar.gz nova-9fb1e7b1f627b10fda1249754e4bc612d697110c.tar.xz nova-9fb1e7b1f627b10fda1249754e4bc612d697110c.zip |
Implements the blueprint for enabling the setting of the root/admin password on an instance.
It uses a new xenapi plugin 'agent' that handles communication to/from the agent running on the guest.
Diffstat (limited to 'nova/exception.py')
-rw-r--r-- | nova/exception.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nova/exception.py b/nova/exception.py index 7680e534a..ecd814e5d 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -76,6 +76,10 @@ class InvalidInputException(Error): pass +class TimeoutException(Error): + pass + + def wrap_exception(f): def _wrap(*args, **kw): try: |