diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-10-20 16:21:11 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-10-20 16:21:11 +0000 |
commit | 6cb72acd28e758df501d0ef0ece489889860e49f (patch) | |
tree | db3891db78db0ac03d1edfff5dc0a203be58fda9 /cpp/src/Ice/Exception.cpp | |
parent | Converted Windows build to use nmake (diff) | |
download | ice-6cb72acd28e758df501d0ef0ece489889860e49f.tar.bz2 ice-6cb72acd28e758df501d0ef0ece489889860e49f.tar.xz ice-6cb72acd28e758df501d0ef0ece489889860e49f.zip |
Implicit context: first cut
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index 2913d10057c..6f25a08def5 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -631,6 +631,14 @@ Ice::FeatureNotSupportedException::ice_print(ostream& out) const } void +Ice::NotSetException::ice_print(ostream& out) const +{ + Exception::ice_print(out); + out << ":\nkey '" << key << "' is not set"; +} + + +void Ice::SecurityException::ice_print(ostream& out) const { Exception::ice_print(out); |