Visual Assist generates code like this:
throw std::exception("The method or operation is not implemented.");
According to C++ standard, std::exception does not have relevant constructor. I know I can change this myself in Visual Assist settings, but would be nice if you changed the default to something like this:
throw std::logic_error("The method or operation is not implemented.");
Some of us are actually writing cross platform code