fixed error thrown on create item

git-svn-id: http://svn.d4science-ii.research-infrastructures.eu/gcube/trunk/portlets/widgets/ckan-metadata-publisher-widget@146956 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Costantino Perciante 2017-04-19 12:39:59 +00:00
parent f894f95409
commit f098932e6a
1 changed files with 89 additions and 83 deletions

View File

@ -269,6 +269,7 @@ public class CKANPublisherServicesImpl extends RemoteServiceServlet implements C
@Override
public DatasetMetadataBean createCKanDataset(DatasetMetadataBean toCreate) throws Exception{
try{
logger.debug("Request for creating a dataset with these information " + toCreate);
String userName = Utils.getCurrentUser(getThreadLocalRequest()).getUsername();
@ -362,6 +363,11 @@ public class CKANPublisherServicesImpl extends RemoteServiceServlet implements C
logger.error("Failed to create the dataset");
}
}catch(Exception e){
logger.error("Error while creating item ", e);
throw new Exception(e.getMessage());
}
return null;
}