Examine the classes defined as follows and select the correct options. (Choose all that apply.)
class Exception1 extends RuntimeException {} class Exception2 extends java.lang.Exception2{} class Exception3 extends Throwable {} class Exception4 extends java.io.FileNotFoundException{}
b, c, d, e
Option (a) is incorrect because java.lang.Exception2 is undefined.
So class Exception1 won't compile.
Option (e) is a correct option because class Exception1 won't compile.