Tagged Questions
8
votes
7answers
1k views
Java: using a RuntimeException to escape from a Visitor
I am being powerfully tempted to use an unchecked exception as a short-circuit control-flow construct in a Java program. I hope somebody here can advise me on a better, cleaner way to handle this ...