In Java you can write a class like
public class Test {
public static void main(String[] args) throws IOException {
System.out.println("Hello World!");
}
}
In here we have a main
method that declares it is throwing an IOException
(which is checked) even though it is clearly not possible for this to happen.
As far as I can tell it is easy for the compiler to tell what checked exceptions a method can throw. Therefore it should be easy to throw a compiler error saying 'this method can not throw an IOException'.
Is there some corner case I'm not thinking of where a checked exception can be thrown without the compiler realizing it? Or is there some other reason why methods must be allowed to declare throws that they will never be able to throw?