コード例 #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);
     }
 }
コード例 #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);
            }
        }
コード例 #3
0
 public ErrorContainer(string strError, Exception exc)
 {
     Container = FormatException(strError, exc);
 }
コード例 #4
0
 public ErrorContainer(string strError)
 {
     Container = FormatException(strError);
 }
コード例 #5
0
 public ErrorContainer(string strError, Exception exc)
 {
     Container = FormatException(strError, exc);
 }
コード例 #6
0
 public ErrorContainer(string strError)
 {
     Container = FormatException(strError);
 }