bug CS-14419

Add error handling for delete security group action

status CS-14419: resolved fixed
This commit is contained in:
Brian Federle 2012-04-11 11:50:17 -07:00
parent cd9c24a978
commit bd58de20fc
1 changed files with 6 additions and 0 deletions

View File

@ -2673,6 +2673,9 @@
poll: pollAsyncJobResult
}
});
},
error: function(json) {
args.response.error(parseXMLHttpResponse(json));
}
});
}
@ -2908,6 +2911,9 @@
async: true,
success: function(data) {
args.response.success();
},
error: function(json) {
args.response.error(parseXMLHttpResponse(json));
}
});
},