public ErrorContainer(PortalSettings _PortalSettings, string strError, Exception exc)
 {
     UserInfo objUserInfo = UserController.GetCurrentUserInfo();
     if (objUserInfo.IsSuperUser)
     {
         Container = FormatException(strError, exc);
     }
     else
     {
         Container = FormatException(strError);
     }
 }
        public ErrorContainer(PortalSettings _PortalSettings, string strError, Exception exc)
        {
            UserInfo objUserInfo = UserController.GetCurrentUserInfo();

            if (objUserInfo.IsSuperUser)
            {
                Container = FormatException(strError, exc);
            }
            else
            {
                Container = FormatException(strError);
            }
        }
 public ErrorContainer(string strError, Exception exc)
 {
     Container = FormatException(strError, exc);
 }
 public ErrorContainer(string strError)
 {
     Container = FormatException(strError);
 }
 public ErrorContainer(string strError, Exception exc)
 {
     Container = FormatException(strError, exc);
 }
 public ErrorContainer(string strError)
 {
     Container = FormatException(strError);
 }