diff options
author | Marc Laukien <marc@zeroc.com> | 2001-07-24 22:32:19 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-07-24 22:32:19 +0000 |
commit | 2d98bbf1ae013fca26c0394d599af6acbb2be6d4 (patch) | |
tree | c18dea07b76fd0592d9c5ba2a821782d6d07694e /cpp/include/Ice/LocalException.h | |
parent | more docu stuff (diff) | |
download | ice-2d98bbf1ae013fca26c0394d599af6acbb2be6d4.tar.bz2 ice-2d98bbf1ae013fca26c0394d599af6acbb2be6d4.tar.xz ice-2d98bbf1ae013fca26c0394d599af6acbb2be6d4.zip |
version
Diffstat (limited to 'cpp/include/Ice/LocalException.h')
-rw-r--r-- | cpp/include/Ice/LocalException.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cpp/include/Ice/LocalException.h b/cpp/include/Ice/LocalException.h index a2724b12d06..a159c5d219d 100644 --- a/cpp/include/Ice/LocalException.h +++ b/cpp/include/Ice/LocalException.h @@ -52,6 +52,18 @@ public: virtual void raise() const; }; +class ICE_API VersionMismatchException : public LocalException +{ +public: + + VersionMismatchException(const char*, int); + VersionMismatchException(const VersionMismatchException&); + VersionMismatchException& operator=(const VersionMismatchException&); + virtual std::string toString() const; + virtual LocalException* clone() const; + virtual void raise() const; +}; + class ICE_API CommunicatorDestroyedException : public LocalException { public: |