Click here to Skip to main content
15,886,091 members
Articles / Programming Languages / C#

CooksMate

Rate me:
Please Sign up or sign in to vote.
3.32/5 (8 votes)
21 Jan 2008GPL32 min read 56.2K   1K   23  
A simple program to help get the timing of a roast dinner
/*
 * Created by SharpDevelop.
 * User: andy
 * Date: 21/12/2007
 * Time: 19:34
 * 
 * To change this template use Tools | Options | Coding | Edit Standard Headers.
 */

using System;
using System.Drawing;
using System.Windows.Forms;
using log4net;

namespace uk.org.aspellclark.cooksmate
{
	    /// <summary>
	    ///   <name>NotImplementedYet</name>
	    ///   <namespace>uk.org.aspellclark.todolist</namespace>
	    ///   <version>1.0</version>
	    ///   <author>Andy Aspell-Clark</author>
	    ///   <description>Display a simple about box
	    ///   </description>
	    ///   <history>
	    ///     <historyitem> 1 Jan 2008  1.0 ARAC  Initial Version.</historyitem>
	    ///   </history>
	    /// </summary>
	public class RecipeAlreadyExistsException : ApplicationException 
	{
		// Create a logger for use in this class
		private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);

		public RecipeAlreadyExistsException()
		{
		}
		public RecipeAlreadyExistsException(string name)
		{
		}
		
	}//class
}//namespace

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior) Airbus Defense and Space
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions