Package puremvc
[hide private]
[frames] | no frames]

Source Code for Package puremvc

 1  # -*- coding: utf-8 -*- 
 2  """ 
 3   PureMVC Python Port by Toby de Havilland <toby.de.havilland@puremvc.org> 
 4   PureMVC Python Port by Daniele Esposti <expo@expobrain.net> 
 5   PureMVC - Copyright(c) 2006-08 Futurescale, Inc., Some rights reserved. 
 6   Your reuse is governed by the Creative Commons Attribution 3.0 License 
 7  """ 
 8   
 9   
10 -class MultitonError(Exception):
11 """ 12 Exception raised by multiton classes 13 """ 14
15 - def __init__(self, message):
16 super(Exception, self).__init__(message)
17