Skip to content

Commit d4580f3

Browse files
authored
networkorchestrator: Fix typo in exception message (#4559)
1 parent b445479 commit d4580f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/orchestration/src/main/java/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2352,7 +2352,7 @@ private Network createGuestNetwork(final long networkOfferingId, final String na
23522352
// Validate network offering
23532353
if (ntwkOff.getState() != NetworkOffering.State.Enabled) {
23542354
// see NetworkOfferingVO
2355-
final InvalidParameterValueException ex = new InvalidParameterValueException("Can't use specified network offering id as its stat is not " + NetworkOffering.State.Enabled);
2355+
final InvalidParameterValueException ex = new InvalidParameterValueException("Can't use specified network offering id as its state is not " + NetworkOffering.State.Enabled);
23562356
ex.addProxyObject(ntwkOff.getUuid(), "networkOfferingId");
23572357
throw ex;
23582358
}

0 commit comments

Comments
 (0)