Exemple #1
0
 public DataTable GetAllUsers()
 {
     try
     {
         return(powerHandler.GetAllUsers());
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "获取所有用户账号出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in getting used information.");
         throw exception;
     }
 }