﻿// JScript File  JScriptErrorUtilities
/************************************************************************************* 
-  JScriptErrorUtilities  This file contains JavaScript functions and objects that 
-       support client side error reporting.
**************************************************************************************/
/************************************************************************************* 
-  Related Jscript files   
-        
**************************************************************************************/
/*Error Utility Classes **************************************************************/
/* *********************************************************************************** 
-  Class: CommonErrorHandler   
-  Purpose: Records or processes client side errors.  
-  Date:  09/27/2007
-  Mods:
-     
************************************************************************************ */
function CommonErrorHandler()
{
// Public Function Declarations ////////////////////////
     this.HandelClientSideErr = HandelClientSideErr;
   
// Public Property Declarations ////////////////////////
// Property Setters
     this.SetCollDescVarName = SetCollDescVarName; 
     function SetCollDescVarName(value)
        {
            _CollDescVarName = value;
        }
        
     this.SetCollDescAttrName = SetCollDescAttrName;    
     function SetCollDescAttrName(value)
        {
            _CollDescAttrName = value;
        } 
        
    
                                                       
// Private Variable Declarations ////////////////////////
     var _CollDescVarName = null;
     var _CollDescAttrName = null; 
    
////////////////////////////////////////////////////////
// Public Functions ////////////////////////////////////
/* *********************************************************************************** 
-  Function: HandelClientSideErr   
-  Purpose:  Display an Alert with error message and supporting data.
-  Parameters: Msg - the position in the object array that this object occupies.  
-  Date:  09/27/2007
-  Mods:
-     
************************************************************************************ */
    function HandelClientSideErr(Msg)
        { 
           alert(Msg);
           
        }


// Private Functions ////////////////////////////////////

        
} 


/*End Error Utility Classes **********************************************************/

