I have a question.
Would it be possible, hypthetically, in Java, to throw a running thread as exception? I know this is madness, but just for fun, could it be done? Something along the lines of:
public void throwThread() throws ExceptableThread {
ExceptableThread thread = new ExceptableThread();
thread.start();
throw thread;
Implementing Runnable as interface is not really an option. It should throw the actual thread object.