C++ error

Here's the place for discussion related to coding in FreeCAD, C++ or Python. Design, interfaces and structures.
Forum rules
Be nice to others! Respect the FreeCAD code of conduct!
Post Reply
nina
Posts: 1
Joined: Thu Jul 26, 2018 10:03 am

C++ error

Post by nina »

Hi,

I started to work on a project, but at some point it blocks because of this error "Unhandled unknown c++ exception in view provider: event callback ". Does somebody have any ideea about could I do about it?
wmayer
Founder
Posts: 20309
Joined: Thu Feb 19, 2009 10:32 am
Contact:

Re: C++ error

Post by wmayer »

Without further information it's impossible to say what exactly is causing the failure. But as a general note the error message is written in ViewProvider::eventCallback and the reason is that in the event handler of a sub-class an exception is raised but not appropriately handled there. It then is forwarded to the calling instance and this generic error message is written.
Post Reply