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