thrown exception to test

This commit is contained in:
Francesco Mangiacrapa 2020-10-15 13:34:38 +02:00
parent bfbf0e4c65
commit 81a0a81e1e
2 changed files with 27 additions and 28 deletions

View File

@ -118,8 +118,9 @@ public class MetadataProfileReader implements MetadataProfileDiscovery {
/** /**
* Read namespaces. * Read namespaces.
* @throws Exception
*/ */
private void readNamespaces() { private void readNamespaces() throws Exception {
try { try {
if (namespaceCategories == null || namespaceCategories.isEmpty()) { if (namespaceCategories == null || namespaceCategories.isEmpty()) {
@ -132,6 +133,7 @@ public class MetadataProfileReader implements MetadataProfileDiscovery {
} }
} catch (Exception e) { } catch (Exception e) {
logger.debug("An error occurred during read namespaces for categories: ", e); logger.debug("An error occurred during read namespaces for categories: ", e);
throw e;
} }
} }

View File

@ -27,10 +27,11 @@ public class TestDataCatalogueMetadataFormatReader {
/** /**
* Test. * Test.
* @throws Exception
*/ */
@Test @Test
public void test() { public void test() throws Exception {
try {
// String scopeString = "/gcube/devsec/devVRE"; // String scopeString = "/gcube/devsec/devVRE";
// String grMetadataProfileSecondaryType = "DataCatalogueMetadata"; // String grMetadataProfileSecondaryType = "DataCatalogueMetadata";
@ -57,10 +58,6 @@ public class TestDataCatalogueMetadataFormatReader {
logger.trace("\n\n "+ ++i +".) Metadata source: "+metadataFormat.getMetadataSource().substring(0, 100)); logger.trace("\n\n "+ ++i +".) Metadata source: "+metadataFormat.getMetadataSource().substring(0, 100));
} }
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} }