This commit is contained in:
Tadgh 2022-11-11 13:55:21 -08:00
parent a2d01fc2f1
commit 642afedf9f
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ public class Batch2JobRunnerImpl implements IBatch2JobRunner {
public Batch2JobOperationResult cancelInstance(String theJobId) throws ResourceNotFoundException {
JobOperationResultJson cancelResult = myJobCoordinator.cancelInstance(theJobId);
if (cancelResult == null) {
throw new ResourceNotFoundException(Msg.code(2131) + " : " + theJobId);
throw new ResourceNotFoundException(Msg.code(2195) + " : " + theJobId);
}
return fromJobOperationResultToBatch2JobOperationResult(cancelResult);
}