diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2007-10-09 09:25:00 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2007-10-09 09:25:00 +0000 |
| commit | 8866e2757675fb70991f516e71e1b4114eb6cf13 (patch) | |
| tree | 15a1f73f11611e7a8fe7402dd67b2a285bb0bdfb /java | |
| parent | 4cffb67f94444de0af1fd4677517c90d0dd6287f (diff) | |
| download | qpid-python-8866e2757675fb70991f516e71e1b4114eb6cf13.tar.gz | |
Update to Error message to contain the thrown exception message.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@583085 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
| -rw-r--r-- | java/systests/src/main/java/org/apache/qpid/test/framework/localcircuit/LocalCircuitImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/test/framework/localcircuit/LocalCircuitImpl.java b/java/systests/src/main/java/org/apache/qpid/test/framework/localcircuit/LocalCircuitImpl.java index d816065758..38b7758e7c 100644 --- a/java/systests/src/main/java/org/apache/qpid/test/framework/localcircuit/LocalCircuitImpl.java +++ b/java/systests/src/main/java/org/apache/qpid/test/framework/localcircuit/LocalCircuitImpl.java @@ -342,7 +342,7 @@ public class LocalCircuitImpl implements Circuit }
catch (JMSException e)
{
- throw new RuntimeException("Got JMSException during close.", e);
+ throw new RuntimeException("Got JMSException during close:" + e.getMessage(), e);
}
}
|
