Vishva wrote: > I am using STL vectors push_back member function and I prefer to use it > within a try catch block to catch any exception. What are the exceptions > possible from push_back()..? I tried googling but could not find a good > answer. Hope you can help me.. >
I would look through the source code for that method in your STL implementation, or perhaps peruse the C++ standard (even a draft should be sufficient if you do not wish to pay for the final version). -- John Gaughan