Does the standard library of C++ contain an exception equivalent to .NET\'s NotImplementedException?
If not, what are the best practices to handle incomplete methods
Since this is just a temporary exception that does not carry any application meaning, you can just throw a char const* :
int myFunction(double d) { throw "myFunction is not implemented yet."; }