• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Does any one know a good package with checked exceptions?

 
Ranch Hand
Posts: 342
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey,

Today in a place that i work there is a lot of use in checked exception and there is no good reuse in exception. For each case a new check exception is created.

i want to eliminate the checked exception types in the system, so i want to recognize the common cases of checked exceptions like :
Required
Validation and etc

The best will be to find a package (like jackarta) that has those common cases or any other good reference in order to get ideas.

Thank you
 
author
Posts: 3285
13
Mac OS X Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Avihai,

I'm not sure there is a package out there that can do this. I suggest initially looking at PMD and FindBugs and Checkstyle, they might have what you are looking for.
 
reply
    Bookmark Topic Watch Topic
  • New Topic