ERROR : terminate called after throwing an instance of 'cppException*'
-
wrote on 2 May 2021, 17:20 last edited by
-
Hi
So some code throws an exception.
You have to dig into the code and see if you can find out why.
Could be something missing it had in main project or the order of initialization. -
wrote on 2 May 2021, 17:51 last edited by
Yes in the debug mode I am able to get where the error is. But the error is while calling the API itself. How to resolve this issue.
Thank you for fast reply. -
Yes in the debug mode I am able to get where the error is. But the error is while calling the API itself. How to resolve this issue.
Thank you for fast reply.Hi
But if exact same code worked before, the API must be missing some setup or similar
as else it should work as it used to.
Before when worked in main app.
Did you have the code in main.cpp ?
It could be when converting to a sub project so of the life scopes of any objects in volved was changed.
Like when you take code from main.cpp and
put in a function. -
wrote on 2 May 2021, 18:24 last edited by
In the main project the the API calling was in other cpp file.
But in the subproject I am calling the API inside the main function.
Will this affect the behaviour? -
In the main project the the API calling was in other cpp file.
But in the subproject I am calling the API inside the main function.
Will this affect the behaviour?@Shruthi
Well it should not as normally its the other way around. moving code from main.cpp to
a function might change how it works.
But is that the only change ?
Move some code from a cpp file to main.cpp ?Normally an API dont care if called from main or some other place.
When you say subproject, do you mean it produces its own exe and the main project also now produce
an exe and before there was only one exe or anything like that ? -
@mrjj
Yes Exactly. Before it was only one exe. Now we have two exe. One for main and other for subproject.Please let me know what is going wrong in this.
@Shruthi
Hi
I think then for the sub-app, something is not linked to it and
hence the api will fail.Check the .pro file for the main project what files is linked
-
wrote on 3 May 2021, 10:37 last edited by Shruthi 5 Mar 2021, 10:40
In the main project I am using API and in subproject I am using terminal to print the result. In the subproject I removed all the GUI related files. And running through terminal It says this error.
And for the main project I have used the 3rd party dynamically linked .so files.
I have just copied the main.pro file to the subproject.pro. But still it's not running.
Do I want to link this in the pro file.
If so, please let me know.
Thanks in advance.I think it's simple. But I am not able to figure it out.
@mrjj
1/9