I would like to handle errors with (unchecked) exceptions. I heared that for each kind of exception I should create a subclass of either Error or RuntimeException. What's the difference?
|
feedback
|
|
In your case you want to inherit from | |||
|
feedback
|
|
I think the JavaDocs kind of say it all:
These are things like stackoverflow, out of memory... you want to extend RuntimeException. | |||
|
feedback
|
|
RuntimeException is a special kind of Exception, Exceptions that compiler will not catch. Error is something that is thrown when there is some severe system problem. There is not a close relation between Error and RuntimeException. Yours seem closer to RuntimeException. | |||
|
feedback
|
|
Always use RuntimeException--I've virtually never seen a case for Error. I've heard the same thing about creating your own exception though and I don't really understand it. Often it's useful, but I use InvalidArgumentException ALL THE TIME. | |||||||||
feedback
|