Description
The reasoner is eating exception preventing correct handling by caller and identification of the cause.
E.g.
return new ResponseTaskBuilder(uriInfo, context, headers).build(result); } catch (InconsistentInputException e) { new WebApplicationException(e); } catch (ReasoningServiceException e) { new WebApplicationException(e); } catch (UnsupportedTaskException e) { new WebApplicationException(e); } catch (Exception e) { new WebApplicationException(e); } throw new WebApplicationException(new Exception("Error"), Response.Status.INTERNAL_SERVER_ERROR);