checked exception

PHOTO EMBED

Thu Jan 18 2024 18:16:45 GMT+0000 (Coordinated Universal Time)

Saved by @login

public class Trycatch {
    public static void main(String[] args) {
        try{
            doSomething();
        }catch(Exception e){
            System.out.println(e);
        }
        
        
    }
    static void doSomething() throws Exception {
            throw new Exception("This is checked exception");
        }
}
content_copyCOPY