diff options
-rw-r--r-- | plugins/infra/properties/org.eclipse.papyrus.infra.properties/src/org/eclipse/papyrus/infra/properties/catalog/PropertiesURIHandler.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/infra/properties/org.eclipse.papyrus.infra.properties/src/org/eclipse/papyrus/infra/properties/catalog/PropertiesURIHandler.java b/plugins/infra/properties/org.eclipse.papyrus.infra.properties/src/org/eclipse/papyrus/infra/properties/catalog/PropertiesURIHandler.java index 36574ba8b00..5a724b8d9ce 100644 --- a/plugins/infra/properties/org.eclipse.papyrus.infra.properties/src/org/eclipse/papyrus/infra/properties/catalog/PropertiesURIHandler.java +++ b/plugins/infra/properties/org.eclipse.papyrus.infra.properties/src/org/eclipse/papyrus/infra/properties/catalog/PropertiesURIHandler.java @@ -62,6 +62,9 @@ public class PropertiesURIHandler implements URIHandler { throw new IOException(uri.toString() + " not found");
}
URIHandler handler = getDelegateHandler(convertedURI);
+ if(handler == null){
+ throw new IOException(uri.toString() + " : no handler found");
+ }
return handler.createInputStream(convertedURI, options);
}
|