From d5d0b91bc5597eec19520cee74569e9ddacc2090 Mon Sep 17 00:00:00 2001 From: Abhishek Koneru Date: Fri, 15 Jun 2012 10:28:40 -0400 Subject: Fixes for Coverity Issues of type Null Returns - Part 3 --- base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/common/src/com/netscape/cmscore/profile') diff --git a/base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java b/base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java index 7da1cc332..45807d6e9 100644 --- a/base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java +++ b/base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java @@ -97,7 +97,7 @@ public class ProfileSubsystem implements IProfileSubsystem { String classid = subStore.getString(PROP_CLASS_ID); IPluginInfo info = registry.getPluginInfo("profile", classid); if (info == null) { - throw new EBaseException("No plugins for type : profile with id " + classid); + throw new EBaseException("No plugins for type : profile, with id " + classid); } String configPath = subStore.getString(PROP_CONFIG); -- cgit