Beispiel #1
0
 public DataTable GetAllForms()
 {
     try
     {
         return(powerHandler.GetAllForms());
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "获取表单出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in getting forms.");
         throw exception;
     }
 }