Corrected the error message in egress rule add command

This commit is contained in:
Damodar 2014-07-21 09:31:15 +05:30 committed by Santhosh Edukulla
parent 8b2efee61c
commit 60fb60a911
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ public class CreateEgressFirewallRuleCmd extends BaseAsyncCreateCmd implements F
continue;
}
if (!NetUtils.isNetworkAWithinNetworkB(cidr, guestCidr)) {
throw new ServerApiException(ApiErrorCode.PARAM_ERROR, cidr + "is not within the guest cidr " + guestCidr);
throw new ServerApiException(ApiErrorCode.PARAM_ERROR, cidr + " is not within the guest cidr " + guestCidr);
}
}
}