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

            if (objUserInfo.IsSuperUser)
            {
                Container = FormatException(strError, exc);
            }
            else
            {
                Container = FormatException(strError);
            }
        }
Ejemplo n.º 3
0
 public ErrorContainer(string strError, Exception exc)
 {
     Container = FormatException(strError, exc);
 }
Ejemplo n.º 4
0
 public ErrorContainer(string strError)
 {
     Container = FormatException(strError);
 }
Ejemplo n.º 5
0
 public ErrorContainer(string strError, Exception exc)
 {
     Container = FormatException(strError, exc);
 }
Ejemplo n.º 6
0
 public ErrorContainer(string strError)
 {
     Container = FormatException(strError);
 }