[Batchserver-cvs] batchserver/src/org/jmonks/batchserver/framework/config ConfigurationException.jav
Brought to you by:
suresh_pragada
From: Suresh <sur...@us...> - 2006-03-04 04:40:57
|
Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22466 Modified Files: ConfigurationException.java FrameworkConfig.java JobConfig.java Log Message: no message Index: JobConfig.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/config/JobConfig.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JobConfig.java 3 Mar 2006 04:19:56 -0000 1.1 --- JobConfig.java 4 Mar 2006 04:40:49 -0000 1.2 *************** *** 22,25 **** --- 22,27 ---- protected Object mJobControllerConfig=null; + + private JobControllerConfig mJobControllerConfig1; public Object getJobControllerConfig() Index: FrameworkConfig.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/config/FrameworkConfig.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FrameworkConfig.java 3 Mar 2006 04:19:56 -0000 1.1 --- FrameworkConfig.java 4 Mar 2006 04:40:49 -0000 1.2 *************** *** 50,54 **** } ! public FrameworkConfig$RepositoryConfig getRepositoryConfig() { return null; --- 50,54 ---- } ! public FrameworkConfig.RepositoryConfig getRepositoryConfig() { return null; Index: ConfigurationException.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/config/ConfigurationException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ConfigurationException.java 4 Mar 2006 00:50:57 -0000 1.1 --- ConfigurationException.java 4 Mar 2006 04:40:49 -0000 1.2 *************** *** 1,14 **** package org.jmonks.batchserver.framework.config; ! /* ! * ConfigurationException.java ! * ! * Created on March 2, 2006, 8:01 PM ! * ! * To change this template, choose Tools | Options and locate the template under ! * the Source Creation and Management node. Right-click the template and choose ! * Open. You can then make changes to the template in the Source Editor. ! */ ! ! import org.jmonks.batchserver.framework.*; /** --- 1,4 ---- package org.jmonks.batchserver.framework.config; ! import org.jmonks.batchserver.framework.common.ErrorCode; /** *************** *** 19,23 **** { ! /** * Constructs an instance of <code>ConfigurationException</code> with the specified detail message. --- 9,13 ---- { ! private ErrorCode errorCode=null; /** * Constructs an instance of <code>ConfigurationException</code> with the specified detail message. *************** *** 27,31 **** public ConfigurationException(org.jmonks.batchserver.framework.common.ErrorCode errorCode) { ! super(msg); } --- 17,22 ---- public ConfigurationException(org.jmonks.batchserver.framework.common.ErrorCode errorCode) { ! super(errorCode.getMessage()); ! this.errorCode=errorCode; } *************** *** 33,37 **** { ! return null; } --- 24,28 ---- { ! return this.errorCode; } |