summaryrefslogtreecommitdiff
path: root/qpid/java/systests
diff options
context:
space:
mode:
authorRupert Smith <rupertlssmith@apache.org>2007-05-21 15:11:23 +0000
committerRupert Smith <rupertlssmith@apache.org>2007-05-21 15:11:23 +0000
commiteaa113f7b7640bddf8328f3e8cc24ce72fb9b52c (patch)
treef3cf5076251648b05710c2e65ef7a37ac0ac6b04 /qpid/java/systests
parentd99f53fb5ef7970a63e150af0a22347c42767dd5 (diff)
downloadqpid-python-eaa113f7b7640bddf8328f3e8cc24ce72fb9b52c.tar.gz
Refactored exceptions to have single constructors and made room for wrapped causes.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@540165 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests')
-rw-r--r--qpid/java/systests/src/main/java/org/apache/qpid/server/txn/TxnBufferTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/server/txn/TxnBufferTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/server/txn/TxnBufferTest.java
index 1d9e30c24e..58ea392306 100644
--- a/qpid/java/systests/src/main/java/org/apache/qpid/server/txn/TxnBufferTest.java
+++ b/qpid/java/systests/src/main/java/org/apache/qpid/server/txn/TxnBufferTest.java
@@ -268,7 +268,7 @@ public class TxnBufferTest extends TestCase
{
public void prepare() throws AMQException
{
- throw new AMQException("Fail!");
+ throw new AMQException(null, "Fail!", null);
}
}