What are the differences between the "throw" and "throws" keywords in Java?
throw: Used to explicitly throw an exception in a method.throws: Declares the exceptions that a method might throw but doesn't throw the exception itself.
throw: Used to explicitly throw an exception in a method.throws: Declares the exceptions that a method might throw but doesn't throw the exception itself.