Can an object that implements runnable throw an exception to its caller? I ask this cause the run method itself can't throw exceptions so i wonder how it could be achieved.
Basically the run method itself can throw an exception but others can't see it (RuntimeException) but can it throw an normal exception to the caller that invoked the thread?
Basically ive got a class that calls a thread to run but in that thread thats running if an event occours i want something to happen in the other class. However the thread doesn't know about the class that called it.