package nl.tno.imb.mc; /** * STUB; dummy configuration manager *
* Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License.
*
* @version $Revision$, $LastChangedDate$, by $Author$, initial version Oct 17, 2016
* @author Alexander Verbraeck
* @author Peter Knoppers
* @author Wouter Schakel
*/
public class ConfigurationManager
{
/**
* Can not be instantiated
*/
private ConfigurationManager()
{
// Never instantiated
}
/**
* STUB
* @param settingName String;
* @return null
* @throws ConfigurationErrorsException Not gonna happen in this STUB
*/
public static String appSettings(String settingName) throws ConfigurationErrorsException
{
return null;
}
}