summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cmscore/profile
diff options
context:
space:
mode:
authorAbhishek Koneru <akoneru@redhat.com>2012-06-15 10:28:40 -0400
committerEndi Sukma Dewata <edewata@redhat.com>2012-06-20 09:33:31 -0500
commitd5d0b91bc5597eec19520cee74569e9ddacc2090 (patch)
tree414a43625acd2e3f44c39cdd87912e5c562930e7 /base/common/src/com/netscape/cmscore/profile
parent4880d86856d183d4ba3fb0291519353ac238af5d (diff)
downloadpki-d5d0b91bc5597eec19520cee74569e9ddacc2090.tar.gz
pki-d5d0b91bc5597eec19520cee74569e9ddacc2090.tar.xz
pki-d5d0b91bc5597eec19520cee74569e9ddacc2090.zip
Fixes for Coverity Issues of type Null Returns - Part 3
Diffstat (limited to 'base/common/src/com/netscape/cmscore/profile')
-rw-r--r--base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java2
1 files changed, 1 insertions, 1 deletions
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);