summaryrefslogtreecommitdiff
path: root/qpid/java/systests/src
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org>2014-02-14 11:46:31 +0000
committerRobert Godfrey <rgodfrey@apache.org>2014-02-14 11:46:31 +0000
commit763396a3a8c18a9b42e2cf611333e61d4c6444de (patch)
treee3898eeb82ddca9e609ef2ba3b45ca271a675f6c /qpid/java/systests/src
parent50b314a51a2c787fcd412a84cb8464f72e3868b4 (diff)
downloadqpid-python-763396a3a8c18a9b42e2cf611333e61d4c6444de.tar.gz
QPID-5551 : Change AMQStoreException to StoreException which inherits from ServerScopedRuntimeException
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1568252 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests/src')
-rw-r--r--qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStore.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStore.java b/qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStore.java
index 093cd6a200..db1d5d9327 100644
--- a/qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStore.java
+++ b/qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStore.java
@@ -186,7 +186,7 @@ public class SlowMessageStore implements MessageStore, DurableConfigurationStore
@Override
- public void create(UUID id, String type, Map<String, Object> attributes) throws AMQStoreException
+ public void create(UUID id, String type, Map<String, Object> attributes) throws StoreException
{
doPreDelay("create");
_durableConfigurationStore.create(id, type, attributes);
@@ -194,7 +194,7 @@ public class SlowMessageStore implements MessageStore, DurableConfigurationStore
}
@Override
- public void remove(UUID id, String type) throws AMQStoreException
+ public void remove(UUID id, String type) throws StoreException
{
doPreDelay("remove");
_durableConfigurationStore.remove(id, type);
@@ -202,7 +202,7 @@ public class SlowMessageStore implements MessageStore, DurableConfigurationStore
}
@Override
- public UUID[] removeConfiguredObjects(final UUID... objects) throws AMQStoreException
+ public UUID[] removeConfiguredObjects(final UUID... objects) throws StoreException
{
doPreDelay("remove");
UUID[] removed = _durableConfigurationStore.removeConfiguredObjects(objects);
@@ -211,7 +211,7 @@ public class SlowMessageStore implements MessageStore, DurableConfigurationStore
}
@Override
- public void update(UUID id, String type, Map<String, Object> attributes) throws AMQStoreException
+ public void update(UUID id, String type, Map<String, Object> attributes) throws StoreException
{
doPreDelay("update");
_durableConfigurationStore.update(id, type, attributes);
@@ -219,7 +219,7 @@ public class SlowMessageStore implements MessageStore, DurableConfigurationStore
}
@Override
- public void update(ConfiguredObjectRecord... records) throws AMQStoreException
+ public void update(ConfiguredObjectRecord... records) throws StoreException
{
doPreDelay("update");
_durableConfigurationStore.update(records);
@@ -227,7 +227,7 @@ public class SlowMessageStore implements MessageStore, DurableConfigurationStore
}
@Override
- public void update(boolean createIfNecessary, ConfiguredObjectRecord... records) throws AMQStoreException
+ public void update(boolean createIfNecessary, ConfiguredObjectRecord... records) throws StoreException
{
doPreDelay("update");
_durableConfigurationStore.update(createIfNecessary, records);