8
किसी फ़ंक्शन को कॉल करने के लिए "थ्रोस एक्सेप्शन" क्यों आवश्यक है?
class throwseg1 { void show() throws Exception { throw new Exception("my.own.Exception"); } void show2() throws Exception // Why throws is necessary here ? { show(); } void show3() throws Exception // Why throws is necessary here ? { show2(); } public static void main(String s[]) throws Exception // Why throws …