Results for exception
I have a Java 17 project, which interacts with DynamoDB Local and configures and deploys it while running tests. Here is some of the code I have in my...
In C#, can I have multiple type of exception within the same catch? I just want to if its possible to do something like this, I appreciate any help tr...
I have a SQL script that doesn't cause an exception in my C# code. BEGIN TRY BEGIN TRAN INSERT INTO MY_TABLE (COLUMN1, COLUMN2) OUTPUT inserted.ID VA...
I'm new to flutter and learning by video's on youtube. And following the video I did small projects, added images, texts and etc. While I add images i...
I am trying to implement retry mechanism on DbUpdateConcurrencyException (link). There are some ways to that, like add counter or have logic in catch ...
I tried to add route transition animation with AnimatedSwitcher to StatefulShellRoute.indexedStack but got this error: flutter: ══╡ EXCEPTION CAUGHT B...
I'm getting System.StackOverflowException: 'Exception of type 'System.StackOverflowException' was thrown.' while generating random numeric string usin...
I register global exception handlers like this: public void App_Startup(object sender, StartupEventArgs e) { if (Current != null) Current.Dispat...
I am trying to execute this @Query in my EmployeeRepository class @Modifying @Query(value = "DELETE FROM Employee e WHERE e.department.companyBran...
I have the following polars DF in Python df = pl.DataFrame({ "user_movies": [[7064, 7153, 78009], [6, 7, 1042], [99, 110, 3927], [2, 11, 152081], ...
The following page widget throws the exception `'package:flutter/src/rendering/box.dart': box.dart:1 Failed assertion: line 1965 pos 12: 'hasSize' The...
I want to throw AuthenticationException when BasicAuthenticationFilter authentication fails and handle it uniformly, returning json. But ExceptionTran...
In my code I have a get request as: response = requests.get(url) For invalid status code ie non 2xx an exception is raised, exp_obj = RequestException...
I am trying to use Databricks Autoloader for a very simple use case: Reading JSONs from S3 and loading them into a delta table, with schema inference ...
I'm currently working on solving a VRP with pickups and deliveries. In the current model a Vehicle is my first @PlanningEntity, containing a @Planning...
I have the following field in my requisition @NotNull @JsonDeserialize(using = LocalDateDeserializer.class) @Schema(description = "BIRTH DATE"...
I need some help in regards of exception handling middleware in ASP.NET Core. I am using Fluent Validation to validate the input from user in a Pipeli...
I am new to Swift Concurrency and trying to understand Task -> ChildTask relationship. I created here two Tasks Parent Task : (1)Calls the test() me...
Stack traces are not very useful in a coroutine environment, which makes the exception type and message extremely important. Exceptions thrown by thir...
I recently upgraded rails 7.0.8 app to rails 7.1.1. Now, I'm not getting the web console on exception pages. But when I put console somewhere in a con...
I am using a library that exposes an RxJava2 API. But my code is not using RxJava (it's actually Kotlin). So I would like to be able to throw exceptio...
when running my program after building it like this mvn clean install then running it with java -jar target/Sorting-1.0-SNAPSHOT.jar. I get this error...
In my ASP.NET Core application I've multiple authentication scheme. GraphServiceClient throw IDW10503: Cannot determine the cloud Instance. The provid...
The following is my class: import { Injectable } from '@nestjs/common'; import { MilvusClient } from '@zilliz/milvus2-sdk-node'; @Injectable() ex...
I have a Visual Studio 2023 solution containing 32 projects. The projects extensively reference each other. 31 of the projects are class libraries, wh...
How do I undo the most recent local commits in Git?
How can I remove a specific item from an array in JavaScript?
How do I delete a Git branch locally and remotely?
How can I find all files containing a specific text (string) on Linux?
How to find all files containing specific text (string) on Linux?
How do I revert a Git repository to a previous commit?
How do I create an HTML button that acts like a link?
How do I check out a remote Git branch?