remove warning

This commit is contained in:
Athou
2024-08-20 10:03:15 +02:00
parent 84de3199cc
commit a0c3eda506

View File

@@ -241,7 +241,7 @@ public class FeedREST {
} catch (Exception e) {
log.debug(e.getMessage(), e);
throw new WebApplicationException(e, Response.status(Status.INTERNAL_SERVER_ERROR).entity(e.getMessage()).build());
throw new WebApplicationException(e.getMessage(), Status.INTERNAL_SERVER_ERROR);
}
return info;
}