166 questions
1
vote
2
answers
112
views
VB.net: Unhandled Exceptions Are Not Being Caught By Handlers
This is in VB.net 2022. The project is a Windows Forms App (.NET Framework), using Framework 4.8.
This is the exception handling code:
Namespace My
Partial Friend Class MyApplication
Public ...
1
vote
1
answer
85
views
Design pattern with multiple cancellable tasks and unhandled exception handling [duplicate]
I want a C# console app that
Runs multiple tasks
Cancellable by Control C
Unhandled exceptions in one task, cleanly cancel the other tasks.
The below code deals with the cancellation correctly, but ...
0
votes
1
answer
304
views
Unhandled Runtime Error in NextJS, Clerk, and MongoDB project
My NextJs project was working fine as I was signed in. As soon as signed out, I faced this Unhandled Runtime Error: Error: Only plain objects, and a few built-ins, can be passed to Client Components ...
0
votes
2
answers
652
views
How to parse a String to int and not get the next errors?
Withvar pinU = int.parse(pin.text); I get this error:
E/flutter (16045): [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: FormatException: Invalid number (at character 1)
E/...
0
votes
1
answer
68
views
type 'List<dynamic>' is not a subtype of type 'Iterable<Map<String, dynamic>>' in type cast
I am trying to solve this issue that come up after every time I pull down to refresh.
The issue message "Unhandled Exception: type 'List' is not a subtype of type 'Iterable<Map<String, ...
0
votes
1
answer
313
views
Dotnet new console returning error on run
I have tried to run "dotnet new console" in any terminal a few times and each time it returns an error:
Unhandled exception: System.UnauthorizedAccessException: Access to the path 'C:\Users\...
0
votes
0
answers
1k
views
"Unhandled error" appears in the console while the error is well handled
I started to learn how to use the Vue.js framework a little while ago, and I got stuck with this situation.
I use the jQuery.ajax() method to make requests to a web api. For each of these ajax ...
0
votes
3
answers
4k
views
MissingPluginException on Flutter
I'm trying to open a URL but I get this Error, when I run an android app on the emulator or in a device the result on the screen is that nothing happens but I get "Unhandled Exception: ...
0
votes
0
answers
583
views
C++ Exception Unhandled in try catch block
i'm writing some exception handling for some C++ MFC code.
I'm facing an issue where my outer exception "UserNotExists" is being caught but the inner exception raises an "Exception ...
0
votes
2
answers
376
views
Flutter/Dart iOS grey screen from unhandled http.post request on invalid url
I have the classical grey screen issue on iOS release build, but I can't figure out a solution to remove the error :
When the app is launched, the first operation is to do an async http request, ...
0
votes
1
answer
624
views
unhandledRejection: TypeError: Cannot destructure property 'protocol' of 'window.location' as it is undefined
I used react-tradingview-widget in my nextjs project.it's correctly works on nextjs version 10.2.3. but when i upgrade nextjs version to 12.1.4 , this error occurred when i reload the tradingview ...
2
votes
1
answer
2k
views
× Unhandled Rejection (Error): invalid fragment object (argument="value", value=
I am new to Smart Contracts.
I am unable to read a smart contract from Binance test network. I keep getting an Unhandled Rejection every time I attempt to read my smart contract using ethers.js.
Error
...
0
votes
0
answers
142
views
Xamarin - How to throw an unhandled exception to test AppDomain.CurrentDomain.UnhandledException method
Added the following to the AppDelegate FinishedLaunching but was wondering how to test? Trying to just throw an exception that either of this will catch
// Catch exceptions from all threads in the ...
0
votes
2
answers
2k
views
How can I add a contact to a list/audience in Mailchimp using its own library via Node JS
The code below is the API call to add a contact to a list/audience programmatically using Node JS and the Mailchimp library. Documentation is found on: https://mailchimp.com/developer/marketing/guides/...
0
votes
1
answer
271
views
What should I do with unhandled exception
I tried a lot of things to do but it still show me the same, that there is unhandled exception: access violation writing location in VS. But it doesn't happen when i sorting 1d array. What can I try ...