diff options
author | Marc Laukien <marc@zeroc.com> | 2002-11-27 21:48:35 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-11-27 21:48:35 +0000 |
commit | c2d4efeee15f86fffef7c4c70c7d3da2c6f0b70d (patch) | |
tree | 4825cb0dae9651fe2f0376ba63947de800aca5a7 /cpp/src/Ice/Exception.cpp | |
parent | - Added host attribute to DNSException (diff) | |
download | ice-c2d4efeee15f86fffef7c4c70c7d3da2c6f0b70d.tar.bz2 ice-c2d4efeee15f86fffef7c4c70c7d3da2c6f0b70d.tar.xz ice-c2d4efeee15f86fffef7c4c70c7d3da2c6f0b70d.zip |
added ami
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index d471a7b6b55..1cdabd74505 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -140,13 +140,6 @@ Ice::IllegalIdentityException::ice_print(ostream& out) const out << ":\nillegal identity: `" << id << "'"; } -void -Ice::LocationForwardIdentityException::ice_print(ostream& out) const -{ - Exception::ice_print(out); - out << ":\nidentity mismatch in location forward"; -} - static void printFailedRequestData(ostream& out, const RequestFailedException& ex) { @@ -431,3 +424,10 @@ Ice::PluginNotFoundException::ice_print(ostream& out) const Exception::ice_print(out); out << ":\nplugin not found"; } + +void +Ice::CollocationOptimizationException::ice_print(ostream& out) const +{ + Exception::ice_print(out); + out << ":\nrequested feature not available with collocation optimization"; +} |