I'm reworking our system to replace SLBs with Spring DAOs and POJOs.

I have a session bean method that creates and deletes records and currently throws CreateException and RemoveException.

In my Springified DAO version of this logic, what should I throw to represent these conditions? I looked for analagous exception types in Spring but did not find anything.

Any ideas?

Thanks!