Eclipse merge multi throws when throwing exceptions with same super class

116 Views Asked by At

ObjectMapper.readValue method Throws IOException and also its sub classes: JsonParseException and JsonMappingException

extended by java.io.IOException
          extended by com.fasterxml.jackson.core.JsonProcessingException
              extended by com.fasterxml.jackson.core.JsonParseException

For the following code:

return new ObjectMapper().readValue(response, VO.class);

Eclipse suggest and generate a valid surround with try single catch for multiple exceptions with same super class:

} catch (IOException e) {
    Helpers.Debug(e);
}

But for throws it only suggest multiple throws:

throws JsonParseException, JsonMappingException, IOException

Is there a way in Eclipse to suggest/generate a single super class throws as throws IOException?

0

There are 0 best solutions below