diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Xml/XmlParseException.cs	Fri Dec 19 11:13:48 2008 +0000
@@ -0,0 +1,16 @@
+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) {}
+	}
+}