fixed exception error

This commit is contained in:
Francesco Mangiacrapa 2020-07-16 11:56:17 +02:00
parent 9fb05560e2
commit bd5cfa29ea
1 changed files with 1 additions and 1 deletions

View File

@ -1507,7 +1507,7 @@ public final class WorkspaceStorageHubClientService implements Workspace{
}catch(Exception e){
String error = "Error on updating the description for item with id: "+itemId;
LOGGER.error(error, e);
throw new Exception(error);
throw new Exception(e);
}
return updatedDescription;