#!/usr/bin/python class MuppetException(Exception): def __init__(self, rcv): self.parameter=rcv def __str__(self): return repr(self.parameter) try: print 5/0 except ZeroDivisionError,msg: print "Stop trying to destroy the universe!" print "By the way...", print msg raise MuppetException("Yaaaaaaay!")