* @throws IOException If error reading this file.
*/
public ReloadablePropertiesWrapper(String fileName, int monitorInterval) throws IOException {
super(fileName);
this.fileName = fileName;
monitor = new FileMonitor(monitorInterval, fileName);
monitor.addListener(this);
}