Tagged Questions
A runtime error is detected after or during the execution of a program.
30
votes
2answers
26k views
Can't create handler inside thread that has not called Looper.prepare() inside AsyncTask for ProgressDialog
I don't understand why I'm getting this error. I'm using AsyncTask to run some processes in the background.
I have:
protected void onPreExecute()
{
connectionProgressDialog = new ...
16
votes
5answers
21k views
What causes java.lang.IncompatibleClassChangeError?
For some reason our java library that we package as a jar is throwing all of these java.lang.IncompatibleClassChangeError when we try to invoke methods from it. It seems to be seemingly random. What ...
11
votes
2answers
410 views
Sitemap randomly breaks over time
I've been having some production runtime errors that I don't fully understand. This has happened to us on a couple different ASP.NET 4.0 Web Sites (shudders - yes, I know - we're porting it to MVC but ...
10
votes
9answers
7k views
Fatal error by Java runtime environment
I am executing a junit test case
I got the following error,
A fatal error has been detected by the Java Runtime Environment:
Internal Error (classFileParser.cpp:3174), pid=2680, tid=2688
Error: ...
8
votes
2answers
328 views
Java “ConcurrentModificationException” runtime error when iterating .next()
According to the runtime error message the Exception occurs in the following line;
VirusData v = iteratorVirusDB.next();
VirusData is a class with a constructor and an overloaded constructor ...
8
votes
1answer
1k views
Illegal remote method in java
It's the first time I use java rmi.I have a custom class which extends UnicastRemoteObject and implements an interface which extends remote.I think that I have implemented the methods of the interface ...
6
votes
6answers
135 views
Irreproducible runtime errors - general approach?
I'm facing a problem that is so mysterious, that I don't even know how to formulate this question... I cannot even post any piece of code.
I develop a big project on my own, started from scratch. ...
6
votes
4answers
4k views
Application Crashes With “Internal Error In The .NET Runtime”
We have an application written against .NET 4.0 which over the weekend crashed, putting the following message into the event log:
Application: PnrRetrieverService.exe Framework Version: ...
5
votes
4answers
73 views
Why doesn't this cast generate a compiler warning?
Why doesn't the following java code generate a compiler warning saying something like "Unsafe cast from SuperClass to SomeBaseClass"?
public abstract SuperClass
{
static SuperClass create()
{
...
5
votes
3answers
3k views
Cannot skip validation in Rails 3?
I'm working on a project in Rails 3 where I need to create an empty record, save it to the database without validation (because it's empty), and then allow the users to edit this record in order to ...
5
votes
2answers
8k views
What is the meaning of this C++ Error std::length_error
While running my program I get this Error:
terminate called after throwing an instance of 'std::length_error'
what(): basic_string::_S_create
Abort trap
I know that you can't do much without ...
4
votes
2answers
2k views
iPhone Project Not Running (more than once)
I have an iPhone app that I'm trying to run on my phone via Xcode.
It installs and runs without an issue
I make a change in the source code (negligible, like an NSLog())
It installs without an issue
...
4
votes
7answers
390 views
How to catch run time error in C and C++?
Like modifying a CONST int,
Can I register a specific function to handle run time errors so that this kind of operation just fails instead of terminating the application?
4
votes
4answers
114 views
Python Pre-testing for exceptions when coverage fails
I recently came across a simple but nasty bug.
I had a list and I wanted to find the smallest member in it. I used Python's built-in min().
Everything worked great until in some strange scenario the ...
4
votes
8answers
11k views
C# compile error: “Invoke or BeginInvoke cannot be called on a control until the window handle has been created.”
I just posted a question about how to get a delegate to update a textbox on another form. Just when I thought I had the answer using Invoke...this happens. Here is my code:
Main Form Code:
using ...
3
votes
1answer
418 views
javascript runtime in rails 3.1.0 and ruby 1.9.2. cant deal with with heroku. Did everything, but still does not working
Please help, it's my studying project. It work locally but not online:
Hello, it is said that i dont need special gems like "therubyracer" in rails 3.1.0
but it writes in "heroku logs":
...
3
votes
2answers
207 views
VB6 application won't run in some computers, in others it runs fine
I have a VB6 application, the installer is compiled using INNO Setup.
The installer runs fine. But in about 10% of computers when the user clicks the Icon to run the installed app, it doesn't start, ...
3
votes
1answer
730 views
OpenCV: Crash during running at cvCopyImage/cvResize
I'm making simple webcam program using OpenCV 2.3 and got stuck by the runtime error. Any idea will be appreciated.
Compile passes but upon running, I get the following error (at cvCopyImage/cvResize ...
3
votes
1answer
106 views
How to suppress runtime errors caused by assert() using google test?
I am using google test in a C++ project. Some functions use assert() in order to check for invalid input parameters. I already read about Death-Tests (What are Google Test, Death Tests) and started ...
3
votes
1answer
206 views
Excel: Break on Error doesn't work in user-defined function
It seems that when VBA code is called from a cell formula (ie. a "User Defined Function" or UDF), the usual VBA Break On Error doesn't work.
The only place I can find this behavior documented is a ...
3
votes
3answers
339 views
Diagnosing CUDA Kernel problems
CUDA has lots of documentation and guides all over the place, but one I haven't been able to find has been any form of instruction in how to diagnose kernels that compile but get cryptic, vague error ...
3
votes
2answers
167 views
Does it make sense to throw a private exception?
I want to throw a runtime exception in case my class invariants are invalidated. Since this is a programming error (similar to a NullPointerException), clients should not catch that exception.
Should ...
3
votes
2answers
216 views
What can cause assembly build version and runtime version to differ?
I have a C# solution, two projects, a winforms and a dll, where the winforms project references to the dll, and I've set everything I know of in the project to the framework version 2.0, yet I still ...
3
votes
1answer
438 views
using NSPredicate with a set of answers
I have a set of strings containing personIDs and I have a NSFetchedResults of people managedObjects with unique strPersonIDs. I tried to create an NSPredicate but it fails. Any help with this would ...
3
votes
2answers
186 views
translate a javascript programme in C
I have a javascript file, and I want to translate it in C, I did it but I have a big runtime error.
Everything work well until the end of the function when it return an int.
If you have some ideas ...
3
votes
1answer
40 views
How to tell what .swf generated an error?
I was viewing a page just now and got the error box popup telling me of a runtime error in a .swf The problem is, there are multiple .swfs on the page, and I do not know which one generated the error.
...
3
votes
2answers
2k views
Xcode STL C++ Debug compile error
I have some file writing code that works as expected, but prints an error on Debug mode, no output errors in Release.
Code:
#include <iostream>
#include <string>
#include <fstream>
...
3
votes
1answer
1k views
Disable Microsoft Visual C++ Runtime Error
If my application crashes, a Microsoft Visual C++ Runtime Library "Runtime Error!" occurs.
The text of the message is:
This applicaton has requested the Runtime to terminate in an unusual way.
Please ...
3
votes
1answer
343 views
Challenging Runtime Error when calling Native Code from Managed Code
First_Layer
I have a win32 dll written in VC++6 service pack 6. Let's call this dll as FirstLayer. I do not have access to FirstLayer's source code but I need to call it from managed
code. The ...
3
votes
4answers
513 views
If I never once reference System.IO in my program, why does my user get an error?
I have a program which doesn't once reference System.I0, coded in vb.net, yet for some reason my user got this:
Description:
Stopped working
Problem signature:
Problem Event Name: CLR20r3
...
2
votes
3answers
58 views
C++ vector and memoization runtime error issues
I encountered a problem here at Codechef. I am trying to use a vector for memoization. As I am still new at programming and quite unfamiliar with STL containers, I have used vector, for the lookup ...
2
votes
1answer
55 views
Compiled perl executable fails to run on Windows 7 (64 bit)
I have created an executable (.exe) of a perl script on a 64-bit linux kernel. It executes correctly in this environment.
When the executable is run in 64-bit Windows 7, the following error message ...
2
votes
1answer
106 views
Android emulator crash: “Dx bad class file magic” / ClassNotFoundException on startup?
I am developing a game in android and I have an issue. I have the game fully functioning on my other computer so I committed the project to an svn server to use on my new windows 7 64 bit computer. ...
2
votes
2answers
53 views
executable .jar - missing functionality
I am creating a program for my exam in programming on first semester of my education. It should show the user the time in Copenhagen and 6 other cities (in other timezones). The user should also be ...
2
votes
2answers
127 views
segmentation fault when executing C code in ubuntu
When I compile the c file, gcc returns no errors, but a segmentation fault occurs at runtime. The debugger showed that the fault occurs in this part of the code:
int q=size[current];
...
2
votes
1answer
80 views
F2Py: Working with allocatable arrays in Fortran being invoked through Python
Using F2Py to compile Fortran routines being suitable to be used within Python, the following peice of code is successfully compiled configured gfortran as the compiler while using F2Py, however, at ...
2
votes
1answer
187 views
System.Security.SecurityException: Request for the permission of type 'System.Security.Permissions.EnvironmentPermission, mscorlib' failed
I get the following error when I tried to run a 'Published' local website.
Server Error in '/' Application.
--------------------------------------------------------------------------------
Security ...
2
votes
3answers
105 views
Java Calculator Displaying Incorrect Results
Having a bit of trouble with my program, it is displaying the wrong results and when you try to do the calculations for a single digit you will get a error. Program posted below, any help is ...
2
votes
1answer
151 views
IE unknown runtime error while setting innerhtml
I am trying to set style inside head tag dynamically inside a iframe so as to set the class
on body of the iframe while loading of the iframe itself, say I want to apply the ze_edit
class on the body ...
2
votes
2answers
123 views
Sigbart Error: 'NSInvalidArgumentException'
I have just mutilated my rootViewController over the past day. I'm now getting this error and I have no clue where to look to fix it.
Any help on how to fix, or even better, help me to decipher the ...
2
votes
4answers
191 views
The Field Is Never Assigned To And Will Always Have Its Default Value null
I currently have 2 bool arrays in a class file as defined by
public static bool[] bArray;
public static bool[] randomRemove;
And I fill bArray like this
public static void fillArray()
{
for ...
2
votes
3answers
99 views
Unexplained error in C++ parser source code
This is the function that checks the name of the function entered by the user into the interpreter/parser I am making, compares it with the array of functions, and executes the corresponding C++ ...
2
votes
1answer
147 views
SDL Linker Errors
The following code is pretty simple. It just draws an image to the screen with a background using SDL. The program I was able to run before hand did fine, referencing everything without a problem.
...
2
votes
4answers
106 views
Stack Overflow and Segmentation Fault
Does Stack overflow gives segmentation fault in this case, when this infinite recursion runs. I was expecting an error message like "Stack Overflow"!
#include <stdio.h>
int main(){
static int ...
2
votes
3answers
148 views
Automatic Type promotion in variadic function
Consider the following code snippet:
#include <stdio.h>
#include <stdarg.h>
display(int num,...){
char c;int j;
va_list ptr;
va_start(ptr,num);
for(j=1;j<=num;j++){
...
2
votes
1answer
375 views
Execution halts on “Microsoft Visual C++ Runtime Error”-popup
A project I am currently involved in uses JavaCv/OpenCv for face detection. Since the OpenCv occasionally throws an error, and the propagation of OpenCv/C++ errors to Java Exceptions isn't fully ...
2
votes
3answers
93 views
curious exception in Visual C++ 10 at runtime
Today I got really strange exception at runtime. I tried to debug step by step, but the exception occurs before main() is called.
So I removed every include and the whole code (commented it), and ...
2
votes
3answers
194 views
Problems with dereferencing a pointer (and returning it)
here I have a function that creates a string, assigns it to a string pointer and returns it. I tried returning a regular string and it worked fine, but then when when I integrated the pointers and de ...
2
votes
1answer
1k views
How to pragmatically create BubbleSeries in SL4
I am creating a BubbleSeries in a function within CS file. As a data source I use a List<Dictionary<string,string>> GridData, Unfortunately my implementation throws an exception: No ...
2
votes
2answers
307 views
Run-time error '429'
I have developed an inventory management software using VB6. and i have copied it on Client's machine and it was working. but 3 days before they formatted the system and now i copied the software ...