xxxxxxxxxx
public void processData() throws DataProcessingException {
// Code that might throw DataProcessingException
}
public void higherLevelFunction() {
try {
processData();
} catch (DataProcessingException e) {
// Handle exception in a way that makes sense at this higher level
}
}