Java - Spoken Tutorials - Assignments Funded by the National Mission on Education through ICT ------------------------------------------------------------------------------------- Custom Exceptions (a) Create a custom exception class InvalidAgeException (b) Create another class Age and create a constructor to initialize the value of age (c) Create validate() method to throw the above exception if age < 18 (d) Create objects inside main method and invoke the validate() method (e) Provide exception handling using try-catch blocks (f) Verify the custom exception class