public static void ValidateData() {
try {
ValidateDataInner();
} catch (Exception e) {
throw e;
}
}
Since I've seen this exact thing several times in the codebase today, I'm wondering if maybe it has some kind of magical benefit or side-effect that I'm not aware of. The only benefit that I can think of is that an unintelligent programmer can claim to be programming "defensively", or something like that.
