I would like to know what happens in java if a method call signature has a exception but there is no try catch block in the method what happens when a exception happens at runtime.
public void someMethod (Collection<file> files) throws Exception
for(File f : files) {
process(f);
}