There's a class MyThread that extends Thread.
We create and start an instance of the class in the current thread:
val thread = MyThread()
thread.start()
// here is a lot of code with exceptions
thread.join()
Select all the correct statements about possible exceptions.