I run this class in .NET and it throws an error, construction is like:
Ex.Message contains the correct error message like a specific database error$ (tested).
The throw 'passes' it on but it gives a general message instead (ObjResult$)
Code:
try { // something goes wrong here.. } catch (Exception Ex) { // Close stuff or so here... // Ex.Message throw Ex; }
The throw 'passes' it on but it gives a general message instead (ObjResult$)
Comment