python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
HardFault during division operation STM32 (CortexM0+)
I have a problem with hard fault exception during division operation and cannot find any clue (STM32G061C6). When I put anywhere in my code for example:
int32_t a = 354;
int32_t b = 23;
int32_t c = a/...
Daniel Šebík
Votes: 0
Answers: 1
Flutter: ImagePicker UIApplicationInvalidInterfaceOrientation Exception
I'm using the image_picker and running into the error below on an iPad running iOS 10.4 when I execute this call ImagePicker().pickImage(source: ImageSource.gallery) on an app with a landscape (both l...
André Haupt
Votes: 0
Answers: 1
How to handle duplicate records in Asp.net Web API
I have implemented CRUD operations using ASP.net. Every API method is working fine but the problem is , in the front end - if someone is putting same primary key its giving a particular Exception erro...

Suprateem Bose
Votes: 0
Answers: 1
How to handle exceptions thrown in streams map without try catch?
I want to handle the exception without using try catch clauses.
void test() {
list.stream().map(obj -> {
Batch batch = x.findByBatchId(obj.getBatchId())
/// exception is thr...
t thog
Votes: 0
Answers: 1