Does anyone know where I can find a list of Spring's (3.0.x) runtime exceptions? I'm talking about exceptions like DataRetrievalFailureException; there's a whole set of these runtime exceptions that you can throw.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Alright, I was able to find them by loading up the source for Spring in my IDE, and seeing all the classes that extend the NestedRuntimeException abstract class. Keep in mind that some of these are abstract classes themselves, and so you will have to use the appropriate concrete implementation:

link|improve this answer
It will be even more usefull if you sort them in alphabetical order. (BTW after that you can see that there about 20 duplicated class names.) – php-coder Oct 2 '11 at 11:33
@php-coder - will do that! Thanks :) – Vivin Paliath Oct 2 '11 at 15:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.