Click here to Skip to main content
15,886,095 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 221.1K   3.1K   184  
This article is about the Light Object-Relational Mapping library.
using System;

namespace Light
{
	/// <summary>
	/// This is the only type of exceptions thrown by Dao objects.
	/// Exceptions of this type are thrown when:
	/// 1. there is a declaration exception (improper attribute definition),
	/// 2. a null reference passed as an argument which should not be null,
	/// 3. there is a SQL exception during the execution of a command.
	/// If this exception is caused by another exception (SqlException for example),
	/// then the message of this exception is the same as that of the inner exception.
	/// </summary>
	public class LightException : Exception
	{
		/// <summary>
		/// Creates a new instance.
		/// </summary>
		public LightException() : base()
		{
		}
		
		/// <summary>
		/// Creates a new instance.
		/// </summary>
		/// <param name="message">detail message</param>
		public LightException(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 LightException(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