It bubbles up exceptions until caught. Frame the concept in practical terms so you can explain it during interview discussion.
Exception propagation allows an exception to move up the call stack until handled. This means lower-level methods don't have to manage recovery. For instance, a `DatabaseConnectionException` might propagate to the top-level transaction manager.
Additional Notes
How does exception propagation affect control flow?