Mercurial > repos > IBBoard.Ini
view InvalidIniSectionException.cs @ 5:7e06c0699257
Re #7 - Add tests to INI parsing
* Fix documentation
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 18 Jan 2009 14:30:40 +0000 |
parents | 2dde4c1d19d9 |
children | f6f726c92e56 |
line wrap: on
line source
// This file (InvalidIniSectionException.cs) is a part of [SOME APPLICATION] and is copyright 2009 IBBoard. // // The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license. using System; namespace IBBoard.Ini { public class InvalidIniSectionException : Exception { /// <summary> /// An exception to indicate that a string did not match the INI section format - see <see cref=" IniSection"/> /// </summary> public InvalidIniSectionException(string message) : base(message) { } } }