Skip to content
Snippets Groups Projects
Commit c0d05fda authored by Thibault VINCENT's avatar Thibault VINCENT
Browse files

fix bad exception naming

parent 05248630
No related branches found
No related tags found
No related merge requests found
...@@ -280,32 +280,32 @@ class Hypervisor(LocalHost): ...@@ -280,32 +280,32 @@ class Hypervisor(LocalHost):
def storage(self): def storage(self):
''' '''
''' '''
raise NotImplemented raise NotImplementedError
def vm_list(self): def vm_list(self):
''' '''
''' '''
raise NotImplemented raise NotImplementedError
def vm_list_running(self): def vm_list_running(self):
''' '''
''' '''
raise NotImplemented raise NotImplementedError
def vm_list_stopped(self): def vm_list_stopped(self):
''' '''
''' '''
raise NotImplemented raise NotImplementedError
def vm_list_paused(self): def vm_list_paused(self):
''' '''
''' '''
raise NotImplemented raise NotImplementedError
def vm_get(self, name): def vm_get(self, name):
''' '''
''' '''
raise NotImplemented raise NotImplementedError
class VM(Host): class VM(Host):
......
...@@ -18,12 +18,6 @@ class CCException(Exception): ...@@ -18,12 +18,6 @@ class CCException(Exception):
return '%s' % self._message return '%s' % self._message
class FeatureNotImplemented(CCException):
'''
'''
pass
# host # host
class HostError(CCException): class HostError(CCException):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment