Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Unsolved ERROR : terminate called after throwing an instance of 'cppException*'

    C++ Gurus
    2
    9
    1135
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S
      Shruthi last edited by

      I created the subproject inside the main project. But some API's not working in the subproject. But its working in the main project. And it gives the error:terminate called after throwing an instance of 'cppException*'

      4error1.png

      1 Reply Last reply Reply Quote 0
      • mrjj
        mrjj Lifetime Qt Champion 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.

        1 Reply Last reply Reply Quote 0
        • S
          Shruthi 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.

          mrjj 1 Reply Last reply Reply Quote 0
          • mrjj
            mrjj Lifetime Qt Champion @Shruthi last edited by

            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.

            1 Reply Last reply Reply Quote 0
            • S
              Shruthi 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?

              mrjj 1 Reply Last reply Reply Quote 0
              • mrjj
                mrjj Lifetime Qt Champion @Shruthi last edited by

                @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 ?

                1 Reply Last reply Reply Quote 0
                • S
                  Shruthi last edited by

                  @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.

                  mrjj 1 Reply Last reply Reply Quote 0
                  • mrjj
                    mrjj Lifetime Qt Champion @Shruthi last edited by

                    @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

                    1 Reply Last reply Reply Quote 0
                    • S
                      Shruthi last edited by Shruthi

                      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 Reply Last reply Reply Quote 0
                      • First post
                        Last post