Click here to Skip to main content
15,885,278 members
Articles / Database Development / SQL Server

Light ORM Library for .NET

Rate me:
Please Sign up or sign in to vote.
4.83/5 (39 votes)
8 Oct 2010CPOL17 min read 220.7K   3.1K   184  
This article is about the Light Object-Relational Mapping library.
using System;

namespace Light
{
	/// <summary>
	/// Represents a declaration error.
	/// For example this may happen when an object of a type
	/// that does not define a TableAttribute is encountered
	/// or a MappingAttribute specifies a name of a type member
	/// that does not exist.
	/// </summary>
	public class DeclarationException : LightException
	{
		/// <summary>
		/// Creates a new instance.
		/// </summary>
		/// <param name="message">detail message</param>
		public DeclarationException(string message) : base(message)
		{
		}
		
		/// <summary>
		/// Creates a new instance.
		/// </summary>
		/// <param name="message">detail message</param>
		/// <param name="cause">exception that caused this exception</param>
		public DeclarationException(string message, Exception cause)
			: base(message, cause)
		{
		}
	}
}

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 Code Project Open License (CPOL)


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

Comments and Discussions