summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/collection/CollectionDescription.java
diff options
context:
space:
mode:
authorAndrew Branson <andrew.branson@cern.ch>2014-10-03 23:18:47 +0200
committerAndrew Branson <andrew.branson@cern.ch>2014-10-03 23:18:47 +0200
commitb68ea0f2b12c4c5189c5fc7c182a1b242dc63579 (patch)
tree85b1cc4713ba978c044bfa0656f9115c9f9bf9e3 /src/main/java/com/c2kernel/collection/CollectionDescription.java
parent275d0bbf555c8917be82ce4cc21eb4cabb00f4c5 (diff)
Rolled back the renaming of existing exceptions.
Diffstat (limited to 'src/main/java/com/c2kernel/collection/CollectionDescription.java')
-rw-r--r--src/main/java/com/c2kernel/collection/CollectionDescription.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/c2kernel/collection/CollectionDescription.java b/src/main/java/com/c2kernel/collection/CollectionDescription.java
index 0c72b67..6f64abf 100644
--- a/src/main/java/com/c2kernel/collection/CollectionDescription.java
+++ b/src/main/java/com/c2kernel/collection/CollectionDescription.java
@@ -20,7 +20,7 @@
*/
package com.c2kernel.collection;
-import com.c2kernel.common.ObjectNotFound;
+import com.c2kernel.common.ObjectNotFoundException;
import com.c2kernel.entity.C2KLocalObject;
/**
@@ -33,8 +33,8 @@ public interface CollectionDescription<E extends CollectionMember> extends C2KLo
/**
* Create a new instance of this collection.
* @return a new collection instance
- * @throws ObjectNotFound When an essential piece of description
+ * @throws ObjectNotFoundException When an essential piece of description
* data, such as a child Item PropertyDescription outcome, doesn't exist.
*/
- public Collection<E> newInstance() throws ObjectNotFound;
+ public Collection<E> newInstance() throws ObjectNotFoundException;
}