view IO/InvalidFileException.cs @ 14:25b953087465

* Rename DictionaryToArrayConverter to DictionaryUtils * Add method to merge arrays no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Sun, 25 Jan 2009 11:03:38 +0000
parents 961030992bd2
children 0352fa33ee8f
line wrap: on
line source

using System;

namespace IBBoard.IO
{
	/// <summary>
	/// Summary description for InvalidFileException.
	/// </summary>
	public class InvalidFileException : Exception
	{
		public InvalidFileException() : base() {}

		public InvalidFileException(string message) : base(message) {}

		public InvalidFileException(string message, Exception innerException) : base(message, innerException) {}
	}
}