Click here to Skip to main content
15,885,985 members
Articles / Web Development / ASP.NET

Experimenting Custom Build Providers

Rate me:
Please Sign up or sign in to vote.
4.69/5 (18 votes)
1 May 2006CPOL4 min read 53.1K   323   64  
A simple OR Mapper built with custom build providers, which reads data from XML files.
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;

namespace ObjectMapper.Utils
{
	public sealed class ErrorHandler
	{
		private ErrorHandler()
		{
		}

		public static void LogError(Exception ex, string customDescription)
		{
			// log the error
            Debug.WriteLine(customDescription);
			throw ex;
		}

		public static void LogError(Exception ex)
		{
			LogError(ex, "");
		}
	}
}

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
Web Developer
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions