config: fix style

This commit is contained in:
Hylke Bons 2011-05-25 01:22:02 +01:00
parent 44572da5c7
commit f2320abc11

View file

@ -105,14 +105,14 @@ namespace SparkleLib {
if (!File.Exists (Path))
throw new ConfigFileNotFoundException (Path + " does not exist");
base.Save (Path);
Save (Path);
}
}
public class ConfigFileNotFoundException : Exception {
public ConfigFileNotFoundException (string message)
: base (message) { }
public ConfigFileNotFoundException (string message) :
base (message) { }
}
}