Top "Runtime-error" questions

Use this tag to indicate that when an application is run, it reports a runtime error or runtime exception after or during the execution of the application.

TypeError: Cannot read property "0" from undefined

I'm getting a very weird undefined error: function login(name,pass) { var blob = Utilities.newBlob(pass); var passwordencode = Utilities.base64…

javascript google-apps-script runtime-error
C++ error : terminate called after throwing an instance of 'std::bad_alloc'

I use below code on eclipse and I get an error terminate "called after throwing an instance of 'std::bad_…

c++ memory-management runtime-error
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: …

.net runtime-error executionengineexception
what does Error "Thread 1:EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)" mean?

I got this error: Thread 1:EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0) How can I solve this? The …

ios swift exception runtime-error
ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: 'undefined'

I know there are a lot of same questions already posted in stack-overflow and tried different solutions to avoid the …

angular runtime-error
Runtime error: Could not load file or assembly 'System.Web.WebPages.Razor, Version=3.0.0.0

I tinkered with my ASP.NET MVC4 packages via NuGet, and now System.Web.WebPages.Razor v3 won't load. Sometimes …

c# asp.net-mvc-4 razor runtime-error
It says that TypeError: document.getElementById(...) is null

Althought I pushed a parameter to getElementById I wonder from where is this 'is null' error coming from? TypeError: document.…

javascript dom runtime-error innerhtml getelementbyid
Unable to run Java GUI programs with Ubuntu

I am learning GUI in Java, and for that I have created a demo program: import java.awt.*; public class …

java swing user-interface ubuntu runtime-error
Double free or corruption after queue::push

#include <queue> using namespace std; class Test{ int *myArray; public: Test(){ myArray = new int[10]; } ~Test(){ delete[] myArray; } }; int …

c++ runtime-error delete-operator