The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
75 views

How to avoid handling RunTimeException in Jersey

The most popular desicion for handling exceptions in rest service and return the error message to client - as i understand - is to catch WebApplicationException or MappableContainerException. But they ...
0
votes
0answers
22 views

Why Extending Exception is checked exception

This may seem like not a question but i would like to know when we want to create exception we extend Extend Class and it creates Checked exception. When i want to create unchecked, i will extend ...