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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/qpid/Exception.h b/cpp/src/qpid/Exception.h
index e74fa79ed9..1be433f17a 100644
--- a/cpp/src/qpid/Exception.h
+++ b/cpp/src/qpid/Exception.h
@@ -43,10 +43,10 @@ class Exception : public std::exception
public:
explicit Exception(const std::string& message=std::string()) throw();
virtual ~Exception() throw();
- virtual const char* what() const throw();
+ virtual const char* what() const throw(); // prefix: message
+ virtual std::string getMessage() const; // Unprefixed message
+ virtual std::string getPrefix() const; // Prefix
- protected:
- std::string getPrefix() const;
private:
std::string message;
mutable std::string whatStr;