去掉配置异常多余处理

This commit is contained in:
zhanghongqing
2018-11-06 11:45:01 +08:00
parent e579e0d617
commit 2c4dc00211
3 changed files with 3 additions and 3 deletions

View File

@@ -208,7 +208,7 @@ public class IpMultiplexPoolCfgController extends BaseController {
for(String id :idArray){
try {
ipMultiplexPoolCfgService.audit(isAudit,isValid,functionId,id,auditTime);
} catch (MaatConvertException e) {
} catch (Exception e) {
e.printStackTrace();
logger.error("SNAT地址池管理配置下发失败"+e.getMessage());
if(e instanceof MaatConvertException) {

View File

@@ -209,7 +209,7 @@ public class AvContentController extends BaseController {
for(String id :idArray){
try {
avContentCfgService.auditAvVoip(isAudit,isValid,functionId,id,auditTime);
} catch (MaatConvertException e) {
} catch ( Exception e) {
if(e instanceof MaatConvertException) {
e.printStackTrace();
logger.error("VOIP配置下发失败"+e.getMessage());;

View File

@@ -172,7 +172,7 @@ public class FileTransferCfgController extends BaseController{
try {
fileTransferCfgService.auditFtpCfg(entity,isAudit);
addMessage(redirectAttributes,"audit_success");
} catch (MaatConvertException e) {
} catch ( Exception e) {
if(e instanceof MaatConvertException) {
e.printStackTrace();
logger.error("ftp配置下发失败"+e.getMessage());;