config: fix style

This commit is contained in:
Hylke Bons 2011-05-25 01:22:02 +01:00
parent 67cfffc4d4
commit 5e0742f30e

View file

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