diff options
Diffstat (limited to 'cppe/include/IceE/LocalException.h')
-rwxr-xr-x | cppe/include/IceE/LocalException.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cppe/include/IceE/LocalException.h b/cppe/include/IceE/LocalException.h index e4bb4140fef..7971f89a82e 100755 --- a/cppe/include/IceE/LocalException.h +++ b/cppe/include/IceE/LocalException.h @@ -598,16 +598,18 @@ public: virtual void ice_throw() const;
};
-class ICEE_API CompressionNotSupportedException : public ::Ice::ProtocolException
+class ICEE_API FeatureNotSupportedException : public ::Ice::LocalException
{
public:
- CompressionNotSupportedException(const char*, int);
+ FeatureNotSupportedException(const char*, int);
virtual const ::std::string ice_name() const;
virtual ::std::string toString() const;
virtual ::Ice::Exception* ice_clone() const;
virtual void ice_throw() const;
+
+ ::std::string unsupportedFeature;
};
class ICEE_API MarshalException : public ::Ice::ProtocolException
|