I have an application which exposes a service via Spring's RMI proxy mechanism. There is a problem whereby sometimes a "blip" on the file-server it has its JARs stored on causes an invocation to propagate a NoClassDefFoundError
back to the caller.
So far, so fair enough. The thing is, I would like my app to just crash if this happens - i.e. if an Error
is going to be propagated back out to the caller.
Note that I already have an UncaughtExceptionHandler
in the app and this is not being invoked (because the exception is not really uncaught)