summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/collection/CollectionDescription.java
diff options
context:
space:
mode:
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;
}