Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Following this question: Handling exceptions in a Swing UI (low level to high level and exception wrapping)

There is an obvious dependency between the logic/service and ui layer in that an Exception is being thrown from a method in a service class (IOException coming from a file operation) and being handled in the code of Swing component.

Is this something to be avoided? If it's best to avoid dependencies like this how could Exceptions in a service class be handled? Should I simply wrap the Exception in a RuntimeException and let it propagate to the UncaughtExceptionHandler?

share|improve this question

2 Answers

up vote 2 down vote accepted

If an exception is part of the public API of the service tier, then it is perfectly fine to depend on them. However, it's probably good practice to not let those exception escape passed your UI controllers and into the UI. From there you should notify the UI of what you would like to happen because of the exception.

share|improve this answer

If you save/load data it's normal to share IOException between layers. But such exceptions like SaxParserException/SqlException should be wrapped because they depend from current implementation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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