diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-11-10 16:07:44 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-11-10 16:07:44 +0000 |
commit | dbb9a7cd36c97ec38d6920b1a124fc35c48e854f (patch) | |
tree | 6996f9fb1e5cccaa6479fc648f7ae596a060ca17 /cpp/include | |
parent | Do not compile *F.cpp files (diff) | |
download | ice-dbb9a7cd36c97ec38d6920b1a124fc35c48e854f.tar.bz2 ice-dbb9a7cd36c97ec38d6920b1a124fc35c48e854f.tar.xz ice-dbb9a7cd36c97ec38d6920b1a124fc35c48e854f.zip |
adding ice_print to exceptions
Diffstat (limited to 'cpp/include')
-rwxr-xr-x | cpp/include/IceUtil/Options.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/include/IceUtil/Options.h b/cpp/include/IceUtil/Options.h index d320d9aa9e2..2e1f0b2ba18 100755 --- a/cpp/include/IceUtil/Options.h +++ b/cpp/include/IceUtil/Options.h @@ -29,6 +29,7 @@ public: APIException(const char*, int, const ::std::string&); virtual ~APIException() throw(); virtual ::std::string ice_name() const; + virtual void ice_print(std::ostream&) const; virtual ::IceUtil::Exception* ice_clone() const; virtual void ice_throw() const; @@ -48,6 +49,7 @@ public: BadOptException(const char*, int, const ::std::string&); virtual ~BadOptException() throw(); virtual ::std::string ice_name() const; + virtual void ice_print(std::ostream&) const; virtual ::IceUtil::Exception* ice_clone() const; virtual void ice_throw() const; |