Replace ApiError with new exceptions

* Convert ApiError to EC2APIError
* Add new exceptions to replace ApiError where it didn't belong
* Fixes bug 926250

Change-Id: Ia711440ee0313faf8ea8c87e2c0a2f5b39cc55a2
This commit is contained in:
Brian Waldon 2012-02-03 13:29:57 -08:00
parent c622ffbc6a
commit a8dfbe6518

@ -551,8 +551,8 @@ class ProxyConnection(driver.ComputeDriver):
raise NotImplementedError()
def get_diagnostics(self, instance_name):
raise exception.ApiError(_("diagnostics are not supported "
"for baremetal"))
# diagnostics are not supported for baremetal
raise NotImplementedError()
def get_disks(self, instance_name):
raise NotImplementedError()