示例#1
0
 public void DelWork(int pkid)
 {
     try
     {
         powerHandler.DelWork(pkid);
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "删除工作流信息出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in deleting worked information.");
         throw exception;
     }
 }