Practice Test 1

Question 1 of 30

The following code is attempting to write a user-defined exception class. Which option can be inserted at Line 01 to ensure successful compilation?
class Exp extends java.io.IOException {
             ////////////   Line 01  //////////////
                   v_method( );
            }

            void v_method( ) throws Exp {
                   throw new Exp( );
            }
}