updated exception message

This commit is contained in:
Francesco Mangiacrapa 2024-05-10 12:29:33 +02:00
parent acaf4eb37c
commit c3a923eb69
1 changed files with 1 additions and 2 deletions

View File

@ -1029,8 +1029,7 @@ public class GeoportalDataEntryServiceImpl extends RemoteServiceServlet implemen
} catch (Exception e) {
LOG.error("Error on deleting the project with id: " + projectID, e);
throw new Exception(
"Error occurred on deleting the project with id: " + projectID + ". Error: " + e.getMessage());
throw new Exception(e.getMessage());
}
}