Thursday, September 28, 2023

Exception 5 keywords in 1 program

 class ThrowsExecp {

    static void fun() throws IllegalAccessException

    {

        System.out.println("Inside fun(). ");

        throw new IllegalAccessException("demo");

    }

 

    public static void main(String args[])

    {

        try {

            fun();

        }

        catch (IllegalAccessException e) {

            System.out.println("caught in main.");

        }

finally {

      System.out.println("This is the finally block");

       }

    }

}

No comments:

Post a Comment

Machine Learning Course Assignments 2024(Dec)

 Machine Learning Course Assignments 2024 1)   Explain the concept of "generalization" in machine learning. Why is it a central go...