Skip to content
Snippets Groups Projects
Commit 0c308afc authored by Simon Barner's avatar Simon Barner
Browse files

- getReferencingResourceURIs(): Ensure that all Exceptions are caught...

- getReferencingResourceURIs(): Ensure that all Exceptions are caught (including NoClassDefFound which might occur when old models should be deleted after a root class has been removed from the metamodel)
parent a705d719
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ import org.fortiss.tooling.kernel.service.IPersistencyService;
* @author mou
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash: 69561D16AB9D258C6792EFCFF1F396F1
* @ConQAT.Rating YELLOW Hash: 25C72F05752AD6750F8DECDBF4E54798
*/
public final class ResourceUtils {
......@@ -416,7 +416,7 @@ public final class ResourceUtils {
}
siblingResource.unload();
} catch(IOException e) {
} catch(Exception e) {
error(ToolingKernelActivator.getDefault(),
"Failed to load \"" + member.getName(), e);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment