Questions tagged [unhandled]

tag used for unhandled error or Exception thrown by code

170 questions
2
votes
1 answer

Unhandled exception in debug mode but works fine in release

I don't know why but this code below gives this error in debug mode when compiling in 64-bit: Unhandled exception at 0x000000013f488f55 in OpenGL.exe: 0xC0000005: Access violation reading location 0x000000053f4d9778. However it works perfectly…
Traxmate
  • 105
  • 1
  • 6
2
votes
2 answers

Silverlight exception in ViewModel not caught in Application_UnhandledException

I have the following situation where an Exception thrown in a ViewModel does not bubble up to the Application_UnhandledException in App.xaml.cs. I have an ObservableCollection in the ViewModel bound to the ItemSourceProperty in a ComboBox. The…
2
votes
2 answers

Unhandled exception with C++ class function

I am writing a program which will preform texture synthesis. I have been away from C++ for a while and am having trouble figuring out what I am doing wrong in my class. When I run the program, I get an unhandled exception in the copyToSample…
please delete me
  • 137
  • 1
  • 1
  • 7
2
votes
0 answers

Is it possible to capture native unhandled exceptions in UWP apps?

Our UWP app is mainly in C# but has a native DLL. When native code crashes CoreApplication.UnhandledErrorDetected is not fired (we have a C# handler for it). We have tried calling SetUnhandledExceptionFilter in the DLL, but our handler is not…
Yakir Levi
  • 51
  • 2
2
votes
2 answers

How to catch Unauthorized Sendgrid Error when quota is reached?

I have no trouble sending email with Sendgrid using this simple code: const sgMail = require('@sendgrid/mail'); sgMail.setApiKey(process.env.SENDGRID_API_KEY); const sendWelcomeEmail = (email, username, code) => { sgMail.send({ to:…
tuancharlie
  • 161
  • 6
2
votes
1 answer

When I am doing ng serve -o then getting an unhandled exception occurred: ts.createNodeArray is not a function

When I am doing ng serve -o I am receiving (in Angular 6) this error An unhandled exception occurred: ts.createNodeArray is not a function See "C:\Users\MADHUK~1.PUL\AppData\Local\Temp\ng-V81Kkf\angular-errors.log" for further details. When i open…
2
votes
1 answer

Unhandled Promise rejection: Zone.js

I keep getting this error in developer tools and its been driving me mental for the past few days. Unhandled Promise rejection: Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten. So I've read and tried…
Waldo Rabie
  • 31
  • 1
  • 5
2
votes
1 answer

Have .catch in chain but getting UnhandledPromiseRejectionWarning using Node 6

I have this promise chain. com.openPort(port).then(port => { _.pTimeout(3000, com.sendPort(port, NCD.gen(args.cmd))) .then(received => { console.log('complete…
DKebler
  • 1,216
  • 1
  • 15
  • 27
2
votes
1 answer

Valgrind unhandled instruction bytes: : 0x8F 0xEA 0xF8 0x10 0xC9 0x3 0x1D 0x0

When I compile my C program and run it under valgrind I have the following errors: vex amd64->IR: unhandled instruction bytes: 0x8F 0xEA 0xF8 0x10 0xC9 0x3 0x1D 0x0 vex amd64->IR: REX=0 REX.W=0 REX.R=0 REX.X=0 REX.B=0 vex amd64->IR: VEX=0…
2
votes
0 answers

Fb - Flo Error EBUSY hyberfil.sys

I just installed Fb Flo with Nodejs , copied the documentation example in a file and ran it like this : node flo.js and i get this error : events.js:72 throw er; // Unhandled 'error' event Error : EBUSY , lstat 'C:hiberfil:sys' I read on a post…
Pierre Ftn
  • 321
  • 1
  • 6
  • 14
2
votes
1 answer

WPF - What information to capture when handling unhandled exceptions?

I am developing an application in WPF / .Net 3.5 that will be available for download on the internet. I am - to the best of my ability - writing bug free code, and using exceptions only where necessary. However my experience with software…
Ash
  • 5,057
  • 7
  • 35
  • 49
2
votes
1 answer

Node js unhandled event

I am new to nodejs. Started learning with this simple program . var http=require("http"); var host="127.0.0.1"; var port=10016; var server=http.createServer(function(request, responce) { console.log("Request recieved : " + request.url); …
Spandana Jami
  • 117
  • 2
  • 2
  • 11
2
votes
2 answers

Error: Unhandled Error in Silverlight Application Code: 2103

I have reflected all the namespaces and now getting error: Error: Unhandled Error in Silverlight Application Code: 2103
2
votes
2 answers

first time working with lists in C unhandled exception

I'm trying to write a simple program that gets a list from the user (a list is a struct with data, and a pointer to the next list), and then print it. My code is working fine, but after printing, I get an error "Unhandled exception at 0x011e1502 in…
Oria Gruber
  • 1,513
  • 2
  • 22
  • 44
2
votes
1 answer

scrapy unhandled exception

I am using scrapy 0.16.2 version on linux. I'm running: scrapy crawl mycrawlspider -s JOBDIR=/mnt/mycrawlspider I'm getting this error which blocks scrapy (hangs and doesn't finish automatically, only ^C stops it) 2012-11-20 15:04:51+0000 [-]…
Milan Kocic
  • 459
  • 6
  • 20
1
2
3
11 12