コード例 #1
0
 public DataTable GetWorkFlowInfo()
 {
     try
     {
         return(powerHandler.GetWorkFlowInfo());
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "获取工作流信息出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in getting.");
         throw exception;
     }
 }