diff options
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: |