comparison InvalidIniSectionException.cs @ 2:2dde4c1d19d9

Closes #6 - Create INI parser * Add more documentation * Change NonExistantIniSection so that the constructor won't cause an exception * Fix IniFileReader so that the reading from string actually reads from the parameter
author IBBoard <dev@ibboard.co.uk>
date Mon, 12 Jan 2009 20:34:07 +0000
parents fbde5e1920ba
children f6f726c92e56
comparison
equal deleted inserted replaced
1:f9444f1786cd 2:2dde4c1d19d9
6 6
7 namespace IBBoard.Ini 7 namespace IBBoard.Ini
8 { 8 {
9 public class InvalidIniSectionException : Exception 9 public class InvalidIniSectionException : Exception
10 { 10 {
11 /// <summary>
12 /// An exception to indicate that a string did not match the INI section format - see <see cref=" IniSection"/>
13 /// </summary>
11 public InvalidIniSectionException(string message) : base(message) 14 public InvalidIniSectionException(string message) : base(message)
12 { 15 {
13 } 16 }
14 } 17 }
15 } 18 }