diff options
Diffstat (limited to 'cpp/src/qpid/broker/SessionHandler.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/SessionHandler.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/qpid/broker/SessionHandler.cpp b/cpp/src/qpid/broker/SessionHandler.cpp index ff7693e93a..a8f5734af7 100644 --- a/cpp/src/qpid/broker/SessionHandler.cpp +++ b/cpp/src/qpid/broker/SessionHandler.cpp @@ -68,6 +68,13 @@ void SessionHandler::executionException( errorListener->executionException(code, msg); } +void SessionHandler::incomingExecutionException( + framing::execution::ErrorCode code, const std::string& msg) +{ + if (errorListener) + errorListener->incomingExecutionException(code, msg); +} + amqp_0_10::Connection& SessionHandler::getConnection() { return connection; } const amqp_0_10::Connection& SessionHandler::getConnection() const { return connection; } |
