/*********************************************************************************************************************************/
/* Name: Error Handler                                                                                                           */   
/* Purpose: Utility class to handle errors and take required action. Yet to be completed.                                        */
/* Author: Teckfusion Systems <info@teckfusionsystems.com>                                                                       */
/* Copyright: Bobby                                                                                                              */
/* Creation Date: Dec 21, 2006                                                                                                   */
/* Revision History:                                                                                                             */
/**/
/********************************************************************************************************************************/

/***********************************************************************************************************/
/* Name: Constructor                                                                                       */
/* Purpose: Constructor for the ErrorHandler Class                                                        */
/* Parameters: 
				Name: strErrorMessage Type: String Purpose: Instance variable to store the error message  */
/**********************************************************************************************************/

ErrorHandler = function(strErrorMessage)
{
	this.strErrorMessage = strErrorMessage; // Set the instance variable based on the parameter passed
}

/************************************************/
/* Name: DisplayAlert                           */
/* Purpose: Display the error Message           */
/* Parameters: None                             */
/************************************************/
ErrorHandler.prototype.DisplayAlert = function()
{
	//alert(this.strErrorMessage); // Display the alert
}
