4 questions
0
votes
1
answer
69
views
RushORM database throwing Excretion while getting data
I am using RushORM database in my Android App. I can save data but when I try to get the stored data it is throwing an exception:
Method threw RushTableMissingEmptyConstructorException.
Here is the ...
3
votes
2
answers
3k
views
C++ - catching a double exception
I have the following code:
#include <iostream>
using namespace std;
class A {
public:
A() { cout << "A::A()" << endl;}
~A() { cout << "A::~A()" << endl; throw "...
40
votes
1
answer
73k
views
Constructor on type not found
Exception Message: Constructor on type StateLog not found.
I have the following code that does not work for only one class:
List<T> list = new List<T>();
string line;
...
0
votes
1
answer
276
views
Cleaning data after exception on class constructor
Why this code not call CloseHandles in class destructor?
In my code test I call '((MyClass*)pThis)->CloseHandles();' explicitly, but variable m_bFinished have wrong value. Why ?
#include <windows.h&...