Java - Custom Exceptions
What will happen if a method throws a checked exception but the caller does not handle or declare it?
void caller() {
callee();
}
void callee() throws IOException {
throw new IOException();
}