view Xml/XmlParseException.cs @ 6:f269d8bcc152

Re #2 - Refactor API * Refactor translations in to smaller and clearer functions * Add "get current translation language" function * Add documentation of public methods
author IBBoard <dev@ibboard.co.uk>
date Sat, 27 Dec 2008 20:28:04 +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) {}
	}
}