0

Does Qt(C++) contain an exception equivalent to .NET's NotImplementedException?

Qt framework has a plenty defines for a lot of things(like Q_UNUSED), so maybe they got the same for not implemented methods.

I already had a look at this question Does C++ have an equivalent to .Net's, but want to clarify this question for Qt specifically (neither want to create additional hierarchy for exceptions).

Community
  • 1
  • 1
htzfun
  • 1,231
  • 10
  • 41

1 Answers1

1

No. Qt does not use exceptions outside of the concurrency framework.

You want to use C++'s standard exceptions for that.

Kuba hasn't forgotten Monica
  • 95,931
  • 16
  • 151
  • 313