summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/Exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/Exception.h')
-rw-r--r--cpp/src/qpid/Exception.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/cpp/src/qpid/Exception.h b/cpp/src/qpid/Exception.h
index bf6c1fb872..4ca15b37fc 100644
--- a/cpp/src/qpid/Exception.h
+++ b/cpp/src/qpid/Exception.h
@@ -44,7 +44,6 @@ class Exception : public std::exception
virtual ~Exception() throw();
virtual const char *what() const throw();
- virtual std::auto_ptr<Exception> clone() const throw();
virtual std::string str() const throw();
private:
std::string msg;
@@ -62,14 +61,6 @@ struct ConnectionException : public Exception {
: Exception(message), code(code_) {}
};
-/** Clone an exception.
- * For qpid::Exception this calls the clone member function.
- * For standard exceptions, uses the copy constructor.
- * For unknown exception types creates a std::exception
- * with the same what() string.
- */
-std::auto_ptr<std::exception> clone(const std::exception&);
-
} // namespace qpid
#endif /*!_Exception_*/