Reputation: 67223
There is a lot of use of "up/down the stack" and similar terminology on this site.
What do the following mean?
Upvotes: 0
Views: 82
Reputation: 59993
A lot of it depends on context. "Up" and "Down" tend to be used rather interchangably - for example, "tearing down" the stack in the case of an exception basically means taking off all the method calls until the relevant catch block is reached, while an exception "propagating up" the stack means pretty much the same thing.
Upvotes: 1