ChildProjectApiImpl: Fix error message

Signed-off-by: Edwin Kempin <ekempin@google.com>
Change-Id: I780adbe850a9f75617534b268e5217847655a77c
This commit is contained in:
Edwin Kempin 2019-10-28 13:59:04 +01:00 committed by David Pursehouse
parent 42d39d0f08
commit 95e2c9ef22

View File

@ -49,7 +49,7 @@ public class ChildProjectApiImpl implements ChildProjectApi {
getChildProject.setRecursive(recursive);
return getChildProject.apply(rsrc).value();
} catch (Exception e) {
throw asRestApiException("Cannot child project", e);
throw asRestApiException("Cannot get child project", e);
}
}
}