16

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.

Vivin Paliath
  • 94,126
  • 40
  • 223
  • 295

1 Answers1

40

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:

Vivin Paliath
  • 94,126
  • 40
  • 223
  • 295
  • 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.) – Slava Semushin Oct 02 '11 at 11:33