Build your intuition. Fill in the missing part by typing it in.
Exception propagation refers to the process of transferring an exception from the place where it occurred to a ____-level method that can handle it.
When an exception is thrown and not caught within a method, it is propagated up the call stack to the nearest enclosing ____-catch block or to the JVM if no appropriate catch block is found.
Write the missing line below.