Changeset 6440 for TI12-security/trunk/NDGSecurity/python/ndg_security_common/ndg/security/common/utils/classfactory.py
- Timestamp:
- 29/01/10 14:07:36 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/NDGSecurity/python/ndg_security_common/ndg/security/common/utils/classfactory.py
r6069 r6440 13 13 log = logging.getLogger(__name__) 14 14 15 15 16 class ClassFactoryError(Exception): 16 17 """Exception handling for NDG classfactory module.""" … … 18 19 log.error(msg) 19 20 Exception.__init__(self, msg) 21 20 22 21 23 def importClass(moduleName, className=None, objectType=None): … … 57 59 58 60 59 def instantiateClass(moduleName, className , moduleFilePath=None,61 def instantiateClass(moduleName, className=None, moduleFilePath=None, 60 62 objectType=None, classArgs=(), classProperties={}): 61 63 '''
Note: See TracChangeset
for help on using the changeset viewer.