#!/usr/bin/python class Attack(object): def __init__(self, target): self.target = target def run(self): raise Exception("Unimplemented method: run")