1: 2: import java.util.Scanner; 3: 4: public class Question18 5: { 6: public static void main(String[] args) 7: { 8: CrazyException exceptionObject = new CrazyException( ); 9: System.out.println(exceptionObject.getMessage( )); 10: exceptionObject.crazyMethod( ); 11: } 12: }