示例#1
0
 public void AddDefaultEr(string userEmail, string roles)
 {
     try
     {
         handler.AddDefaultEr(userEmail, roles);
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "添加用户角色", innerEx);
         logger.Log(Level.Error, exception, "Error in AddDefaultEr.");
         throw exception;
     }
 }