summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/entity/imports/ImportOutcome.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/c2kernel/entity/imports/ImportOutcome.java')
-rw-r--r--src/main/java/com/c2kernel/entity/imports/ImportOutcome.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/c2kernel/entity/imports/ImportOutcome.java b/src/main/java/com/c2kernel/entity/imports/ImportOutcome.java
index 915f52d..60279dc 100644
--- a/src/main/java/com/c2kernel/entity/imports/ImportOutcome.java
+++ b/src/main/java/com/c2kernel/entity/imports/ImportOutcome.java
@@ -20,7 +20,7 @@
*/
package com.c2kernel.entity.imports;
-import com.c2kernel.common.ObjectNotFound;
+import com.c2kernel.common.ObjectNotFoundException;
import com.c2kernel.process.Gateway;
public class ImportOutcome {
@@ -38,7 +38,7 @@ public class ImportOutcome {
this.path = path;
}
- public String getData(String ns) throws ObjectNotFound {
+ public String getData(String ns) throws ObjectNotFoundException {
if (data == null)
data = Gateway.getResource().getTextResource(ns, path);
return data;