Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/config
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12623
Added Files:
ConfigurationException.java
Log Message:
no message
--- NEW FILE: ConfigurationException.java ---
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.*;
/**
* @author Suresh Pragada
*
*/
public class ConfigurationException extends Exception
{
/**
* Constructs an instance of <code>ConfigurationException</code> with the specified detail message.
* @param msg the detail message.
*
*/
public ConfigurationException(org.jmonks.batchserver.framework.common.ErrorCode errorCode)
{
super(msg);
}
public org.jmonks.batchserver.framework.common.ErrorCode getErrorCode()
{
return null;
}
}
|