Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
69 views

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 ...
asadullah's user avatar
  • 111
3 votes
2 answers
3k views

I have the following code: #include <iostream> using namespace std; class A { public: A() { cout << "A::A()" << endl;} ~A() { cout << "A::~A()" << endl; throw "...
Mickey's user avatar
  • 1,545
40 votes
1 answer
73k views

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; ...
Jacob Lambert's user avatar
0 votes
1 answer
276 views

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&...
lsalamon's user avatar
  • 8,214