예제 #1
0
파일: amqp.py 프로젝트: olekenneth/chains
 def __init__(self, *args, **kw):
     ChainsException.__init__(self, *args, **kw)
     self.response = {}
예제 #2
0
파일: config.py 프로젝트: auduny/chains
 def __init__(self, rule):
     ChainsException.__init__(self, 'Rule already disabled: %s' % rule)
     self.rule = rule
예제 #3
0
파일: config.py 프로젝트: auduny/chains
 def __init__(self, serviceId):
     ChainsException.__init__(self, 'Service already disabled: %s' % serviceId)
     self.serviceId = serviceId
예제 #4
0
파일: amqp.py 프로젝트: olekenneth/chains
 def __init__(self, *args, **kw):
     ChainsException.__init__(self, *args, **kw)
     self.response = {}