summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/profile/ProfileNotFoundException.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/certsrv/profile/ProfileNotFoundException.java')
-rw-r--r--base/common/src/com/netscape/certsrv/profile/ProfileNotFoundException.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/common/src/com/netscape/certsrv/profile/ProfileNotFoundException.java b/base/common/src/com/netscape/certsrv/profile/ProfileNotFoundException.java
index c6a549b07..25c6d4bfd 100644
--- a/base/common/src/com/netscape/certsrv/profile/ProfileNotFoundException.java
+++ b/base/common/src/com/netscape/certsrv/profile/ProfileNotFoundException.java
@@ -41,12 +41,12 @@ public class ProfileNotFoundException extends ResourceNotFoundException {
public ProfileNotFoundException(Data data) {
super(data);
- profileId = data.getAttribute("profileId");
+ profileId = data.getProperty("profileId");
}
public Data getData() {
Data data = super.getData();
- data.setAttribute("profileId", profileId);
+ data.setProperty("profileId", profileId);
return data;
}