Eclipse merge multi throws when throwing exceptions with same super class












1















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?










share|improve this question

























  • your catch example is not a multi-catch. i am confused about what you are asking for.

    – Serge
    Nov 23 '18 at 4:24











  • @Serge multi exceptions in one catch

    – user7294900
    Nov 23 '18 at 11:24











  • In your example all exceptions which are derived from IOException will be cauthg. A catch in java 8 allows you to catch exceptions listed there, i.e. catch (ExcA | ExcB | ExcC ex). I would say that the latter is the multi-catch.

    – Serge
    Nov 23 '18 at 13:59











  • @Serge updated my answer to be more clear

    – user7294900
    Nov 25 '18 at 6:59
















1















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?










share|improve this question

























  • your catch example is not a multi-catch. i am confused about what you are asking for.

    – Serge
    Nov 23 '18 at 4:24











  • @Serge multi exceptions in one catch

    – user7294900
    Nov 23 '18 at 11:24











  • In your example all exceptions which are derived from IOException will be cauthg. A catch in java 8 allows you to catch exceptions listed there, i.e. catch (ExcA | ExcB | ExcC ex). I would say that the latter is the multi-catch.

    – Serge
    Nov 23 '18 at 13:59











  • @Serge updated my answer to be more clear

    – user7294900
    Nov 25 '18 at 6:59














1












1








1








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?










share|improve this question
















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?







java eclipse exception-handling objectmapper throws






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 25 '18 at 6:59







user7294900

















asked Nov 22 '18 at 23:35









user7294900user7294900

23.4k113464




23.4k113464













  • your catch example is not a multi-catch. i am confused about what you are asking for.

    – Serge
    Nov 23 '18 at 4:24











  • @Serge multi exceptions in one catch

    – user7294900
    Nov 23 '18 at 11:24











  • In your example all exceptions which are derived from IOException will be cauthg. A catch in java 8 allows you to catch exceptions listed there, i.e. catch (ExcA | ExcB | ExcC ex). I would say that the latter is the multi-catch.

    – Serge
    Nov 23 '18 at 13:59











  • @Serge updated my answer to be more clear

    – user7294900
    Nov 25 '18 at 6:59



















  • your catch example is not a multi-catch. i am confused about what you are asking for.

    – Serge
    Nov 23 '18 at 4:24











  • @Serge multi exceptions in one catch

    – user7294900
    Nov 23 '18 at 11:24











  • In your example all exceptions which are derived from IOException will be cauthg. A catch in java 8 allows you to catch exceptions listed there, i.e. catch (ExcA | ExcB | ExcC ex). I would say that the latter is the multi-catch.

    – Serge
    Nov 23 '18 at 13:59











  • @Serge updated my answer to be more clear

    – user7294900
    Nov 25 '18 at 6:59

















your catch example is not a multi-catch. i am confused about what you are asking for.

– Serge
Nov 23 '18 at 4:24





your catch example is not a multi-catch. i am confused about what you are asking for.

– Serge
Nov 23 '18 at 4:24













@Serge multi exceptions in one catch

– user7294900
Nov 23 '18 at 11:24





@Serge multi exceptions in one catch

– user7294900
Nov 23 '18 at 11:24













In your example all exceptions which are derived from IOException will be cauthg. A catch in java 8 allows you to catch exceptions listed there, i.e. catch (ExcA | ExcB | ExcC ex). I would say that the latter is the multi-catch.

– Serge
Nov 23 '18 at 13:59





In your example all exceptions which are derived from IOException will be cauthg. A catch in java 8 allows you to catch exceptions listed there, i.e. catch (ExcA | ExcB | ExcC ex). I would say that the latter is the multi-catch.

– Serge
Nov 23 '18 at 13:59













@Serge updated my answer to be more clear

– user7294900
Nov 25 '18 at 6:59





@Serge updated my answer to be more clear

– user7294900
Nov 25 '18 at 6:59












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439093%2feclipse-merge-multi-throws-when-throwing-exceptions-with-same-super-class%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439093%2feclipse-merge-multi-throws-when-throwing-exceptions-with-same-super-class%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini