diff options
Diffstat (limited to 'src/main/java/com/c2kernel/lookup/ldap/LDAPClientReader.java')
| -rw-r--r-- | src/main/java/com/c2kernel/lookup/ldap/LDAPClientReader.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/com/c2kernel/lookup/ldap/LDAPClientReader.java b/src/main/java/com/c2kernel/lookup/ldap/LDAPClientReader.java index 1d41ed7..70bf126 100644 --- a/src/main/java/com/c2kernel/lookup/ldap/LDAPClientReader.java +++ b/src/main/java/com/c2kernel/lookup/ldap/LDAPClientReader.java @@ -1,8 +1,8 @@ package com.c2kernel.lookup.ldap;
+import com.c2kernel.common.PersistencyException;
import com.c2kernel.entity.C2KLocalObject;
import com.c2kernel.lookup.ItemPath;
-import com.c2kernel.persistency.ClusterStorageException;
/** Allows clients to directly load properties and collections from the LDAP
* so no CORBA calls need to be made during normal browsing
@@ -21,8 +21,8 @@ public class LDAPClientReader extends LDAPClusterStorage { */
@Override
public void delete(ItemPath itemPath, String path)
- throws ClusterStorageException {
- throw new ClusterStorageException("Writing not supported in ClientReader");
+ throws PersistencyException {
+ throw new PersistencyException("Writing not supported in ClientReader");
}
/**
@@ -38,8 +38,8 @@ public class LDAPClientReader extends LDAPClusterStorage { */
public void put(ItemPath itemPath, String path, C2KLocalObject obj)
- throws ClusterStorageException {
- throw new ClusterStorageException("Writing not supported in ClientReader");
+ throws PersistencyException {
+ throw new PersistencyException("Writing not supported in ClientReader");
}
}
|
