diff options
author | Michi Henning <michi@zeroc.com> | 2005-08-10 23:52:04 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-08-10 23:52:04 +0000 |
commit | 0d21501028e4940dee3453cbfe9fe6b35e828a11 (patch) | |
tree | 6905fd125eaa3326a5d21b2d5784933e1e5259b0 | |
parent | Changed CompressionNotSupportedException to FeatureNotSupportedException. (diff) | |
download | ice-0d21501028e4940dee3453cbfe9fe6b35e828a11.tar.bz2 ice-0d21501028e4940dee3453cbfe9fe6b35e828a11.tar.xz ice-0d21501028e4940dee3453cbfe9fe6b35e828a11.zip |
Made string for FeatureNotSupportedException more descriptive.
-rw-r--r-- | java/src/Ice/ConnectionI.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/Ice/ConnectionI.java b/java/src/Ice/ConnectionI.java index 2aead87797f..34a61c42500 100644 --- a/java/src/Ice/ConnectionI.java +++ b/java/src/Ice/ConnectionI.java @@ -1788,7 +1788,8 @@ public final class ConnectionI extends IceInternal.EventHandler implements Conne else { FeatureNotSupportedException ex = new FeatureNotSupportedException(); - ex.unsupportedFeature = "compression"; + ex.unsupportedFeature = "Cannot uncompress compressed message: " + + "org.apache.tools.bzip2.CBZip2OutputStream was not found"; throw ex; } } |