raise NotImplementedError if not implemented

This commit is contained in:
Steve Pulec 2013-02-22 07:55:48 -05:00
commit 0bd4d57ef2
26 changed files with 125 additions and 125 deletions

View file

@ -6,29 +6,29 @@ from moto.ec2.utils import resource_ids_from_querystring
class RouteTables(object):
def associate_route_table(self):
return NotImplemented
raise NotImplementedError('RouteTables(AmazonVPC).associate_route_table is not yet implemented')
def create_route(self):
return NotImplemented
raise NotImplementedError('RouteTables(AmazonVPC).create_route is not yet implemented')
def create_route_table(self):
return NotImplemented
raise NotImplementedError('RouteTables(AmazonVPC).create_route_table is not yet implemented')
def delete_route(self):
return NotImplemented
raise NotImplementedError('RouteTables(AmazonVPC).delete_route is not yet implemented')
def delete_route_table(self):
return NotImplemented
raise NotImplementedError('RouteTables(AmazonVPC).delete_route_table is not yet implemented')
def describe_route_tables(self):
return NotImplemented
raise NotImplementedError('RouteTables(AmazonVPC).describe_route_tables is not yet implemented')
def disassociate_route_table(self):
return NotImplemented
raise NotImplementedError('RouteTables(AmazonVPC).disassociate_route_table is not yet implemented')
def replace_route(self):
return NotImplemented
raise NotImplementedError('RouteTables(AmazonVPC).replace_route is not yet implemented')
def replace_route_table_association(self):
return NotImplemented
raise NotImplementedError('RouteTables(AmazonVPC).replace_route_table_association is not yet implemented')