Home
last modified time | relevance | path

Searched refs:SingletonException (Results 1 – 1 of 1) sorted by relevance

/development/tools/axl/
Dsingletonmixin.py48 class SingletonException(Exception): class
54 raise SingletonException, 'Can not override __new__ in a Singleton'
58 raise SingletonException, 'Singletons may only be instantiated through getInstance()'
71 …raise SingletonException, 'If no supplied args, singleton must already be instantiated, or __init_…
74 …raise SingletonException, 'If the singleton requires __init__ args, supply them on first instantia…
155 self.assertRaises(SingletonException, B.getInstance)
169 self.assertRaises(SingletonException, A)
181 self.assertRaises(SingletonException, instantiatedAnIllegalClass)
193 self.assertRaises(SingletonException, B, 'arg1 value', 'arg2 value')