A method I am calling in run() in a class that implements Runnable) is designed to be throwing an exception.
But the Java compiler won\'t let me do that and suggests
The easiest way is to define your own exception object which extend the RuntimeException class instead of the Exception class.
RuntimeException
Exception