diff options
author | Bernard Normier <bernard@zeroc.com> | 2015-11-20 13:06:56 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2015-11-20 13:06:56 -0500 |
commit | f4357fa23e7c5980c9b6b85054a4e5d5ed66c7a1 (patch) | |
tree | 0ebbbb605c637539f49076183cfbc5420f159c77 /java/src | |
parent | Add missing LMDB dependencies (diff) | |
download | ice-f4357fa23e7c5980c9b6b85054a4e5d5ed66c7a1.tar.bz2 ice-f4357fa23e7c5980c9b6b85054a4e5d5ed66c7a1.tar.xz ice-f4357fa23e7c5980c9b6b85054a4e5d5ed66c7a1.zip |
Reworked IceStorm and IceGrid database error handling
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/Ice/src/main/java/Ice/ObjectAdapterI.java | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/java/src/Ice/src/main/java/Ice/ObjectAdapterI.java b/java/src/Ice/src/main/java/Ice/ObjectAdapterI.java index 29e955e37fc..cbab8c8d451 100644 --- a/java/src/Ice/src/main/java/Ice/ObjectAdapterI.java +++ b/java/src/Ice/src/main/java/Ice/ObjectAdapterI.java @@ -1366,23 +1366,6 @@ public final class ObjectAdapterI implements ObjectAdapter ex1.id = _id; throw ex1; } - catch(InvalidAdapterException ex) - { - if(_instance.traceLevels().location >= 1) - { - StringBuilder s = new StringBuilder(128); - s.append("couldn't update object adapter `"); - s.append(_id); - s.append("' endpoints with the locator registry:\n"); - s.append(ex.reason); - _instance.initializationData().logger.trace(_instance.traceLevels().locationCat, s.toString()); - } - - NotRegisteredException ex1 = new NotRegisteredException(); - ex1.kindOfObject = "object adapter"; - ex1.id = _id; - throw ex1; - } catch(InvalidReplicaGroupIdException ex) { if(_instance.traceLevels().location >= 1) |