Tagged Questions
0
votes
2answers
65 views
Code will not run past exception VS2012
I have a try catch statement and when the code goes to throw the exception, it will not run past this point.
I press F5/F10 and the code keeps running the same line of code.
Is this to do with a ...
1
vote
0answers
17 views
Break on error, but not on these specific lines?
I hope i am not alone in noticing that various versions of jQuery tend to have strange non-showstopper errors that get thrown but which are caught, and yet this tends to set off the debugger on Chrome ...
0
votes
1answer
33 views
How to find where the java ClassCastException is happening
Just wondering if anyone can see why i am getting the exception "java.lang.ClassCastException" from the code below.
RISService, RisPortType are lib that i got from a WSDL file and then use wsimport ...
0
votes
1answer
54 views
How to use Intellij Idea's exception breakpoints
This seems a dumb question, but I can't figure out how to debug exceptions in Intellij Idea. Googling does not help either.
I try to create exception breakpoints. When IDEA breaks, I expect it to ...
0
votes
0answers
30 views
DOM Exception with JQuery Disables Debugging
I created the world's simplest HTML file:
<html>
<head>
<script type="text/javascript" src="jquery-2.0.0.min.js"/>
<script type="text/javascript">
function boing()
{
...
2
votes
1answer
38 views
How to get uWSGI Python exception message pretty printing?
Would like to know if there is a simple, easy way to have uWSGI pretty print exception messages (for Python specifically, not sure if the settings are particular to Python or not).
Thanks very much!
14
votes
2answers
239 views
How do I get the value and type of the current exception in C++ using gdb?
gdb allows one to catch exceptions when they're thrown, and when they're caught. But sometimes the line an exception is thrown has no symbols, or a breakpoint is triggered during exception handling. ...
0
votes
1answer
38 views
Android App debugs via Eclipse with no error but Crashes from Play Store
I'm having a real issue. I'm getting a crash every time I try and download my app through the play store, yet deploying via Eclipse it works perfectly fine.
I keep getting this error:
...
0
votes
1answer
73 views
JNI: Catching Init-Time Exceptions
Okay, I'm all out of ideas on this one. Does anyone have any idea how I can hook into Java's exception pipeline in order to catch (and log to a text file) all exceptions that are occurring?
The ...
0
votes
1answer
48 views
SlimDX Debugging help - first chance exception 'slimdx.direct3d11.direct3d11 exception'
C#
I'm getting this error from SlimDX:
first chance exception 'slimdx.direct3d11.direct3d11 exception'
but I can't seem to figure out why/where/when. I've turned on every kind of debugging possible, ...
0
votes
1answer
27 views
Debugging an installed .NET application
Dealing with an error which only seems to occur with an installed .NET 4.0 application on only about half of the machines the application has been installed on.
Is there any way to debug the ...
3
votes
2answers
103 views
Crash dump with unknown origin
I have my application crashing with following CallStack on the error (from WinDbg):
ntdll!ZwWaitForMultipleObjects+0xa
KERNELBASE!WaitForMultipleObjectsEx+0xe8
...
0
votes
2answers
38 views
Debugging Java with Eclipse: process is suspended, but it doesn't throw any exception
Debugging one my applications in Java, there came a moment when the process and its threads became suspended, the logging (directed to file, no console) was interrupted, but the program didn't throw ...
4
votes
1answer
175 views
How can I get the stack trace for a JavaScript exception in IE 8?
When a JavaScript exception is thrown in IE 8, how can I see its stack trace?
For example, the following code from jQuery catches an exception and rethrows it. Debugging in Visual Studio (2012), ...
9
votes
1answer
149 views
Is there a keystroke in Visual Studio to toggle break on all CLR exceptions, first chance?
To toggle break on all exceptions right now, I have to:
Debug->Exceptions
Click in the Thrown column next to "Common Language Runtime Eceptions"
OK
Normally I want to stop on all exceptions, but ...