Mercurial > repos > IBBoard
view Xml/XmlParseException.cs @ 0:961030992bd2
Initial commit of IBBoard libraries
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Fri, 19 Dec 2008 11:13:48 +0000 |
parents | |
children | 0352fa33ee8f |
line wrap: on
line source
using System; namespace IBBoard.Xml { /// <summary> /// Summary description for XmlParseException. /// </summary> public class XmlParseException : Exception { public XmlParseException() : base() {} public XmlParseException(string message) : base(message) {} public XmlParseException(string message, Exception innerException) : base(message, innerException) {} } }