Follow this method to handle a constructor that fails:
Throw an exception. Constructors don't have a return type, so it's not possible to use return codes. The best way to signal constructor failure is therefore to throw an exception.
explain with example in c++..
explain the scenario with example?