view Xml/XmlParseException.cs @ 11:ba9239164de2

Fixes #5 - Converting dictionary to array * Add genericed DictionaryToArrayConverter class to IBBoard utils
author IBBoard <dev@ibboard.co.uk>
date Sun, 04 Jan 2009 14:44:19 +0000
parents 961030992bd2
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) {}
	}
}