return new CreateVMSnapshotAnswer(cmd, cmd.getTarget(), cmd.getVolumeTOs());
} catch (Exception e) {
String msg = "";
if(e instanceof BadAsyncResult){
String licenseKeyWord = "LICENCE_RESTRICTION";
BadAsyncResult errorResult = (BadAsyncResult)e;
if(errorResult.shortDescription != null && errorResult.shortDescription.contains(licenseKeyWord)){
msg = licenseKeyWord;
}
}else{
msg = e.getMessage();