2
votes
6answers
514 views
Thorough use of ‘if’ statements or ‘try/catch’ blocks?
Give me some of your thoughts on which is a better coding practice/makes more efficient code/looks prettier/whatever: Increasing and improving your ability to use if statements to …
0
votes
0answers
15 views
Database constraint violation ignored during SubSonic Save()?
In the following code, if one of the values assigned violates a database constraint, the Save() updates the record with the other good values. However, the database constraint does …
0
votes
2answers
100 views
Handle error when getimagesize can’t find file
Hi, when I'm trying to getimagesize($img) and the image dos't exist I get an error. I don't wont to first check if the file exist, just handle the error.
I'm not sure how try-catc …
0
votes
3answers
175 views
How to catch Exception and continue program? C#
I need to do a check to see if the file exists that they input, How can I do this, I tried using try & catch and it has no effect
if (startarg.Contains("-del") == true)
…
0
votes
4answers
95 views
Having problem with Try-Catch block in a Java I/O program.
I have created the output for a program that allows a user to input their employee name and number and then their hourly wage and their total number of regular hours and overtime h …
4
votes
3answers
194 views
Java: How would I write a try-catch-repeat block?
I am aware of a counter approach to do this. I was wondering if there is a nice and compact way to do this.
15
votes
5answers
589 views
C++ try/throw/catch => machine code
Mentally, I've always wondered how try/throw/catch looks behind the scenes, when the C++ compiles translates it to assembler. But since I never use it, I never got around to checki …
0
votes
5answers
128 views
Can I put try / catch around an OS API that crashes?
I use a Windows OS library to manipulate image files. Sometimes it crashes deep inside it for no apparent reason—all the inputs are reasonable and its not a threading issue. The …
1
vote
2answers
135 views
How to add a Try/Catch to SQL Stored Procedure
CREATE PROCEDURE [dbo].[PL_GEN_PROVN_NO1]
@GAD_COMP_CODE VARCHAR(2) =NULL,
@@voucher_no numeric =null output
AS
BEGIN
DECLARE @NUM NUMERIC
DECLARE @P …
1
vote
2answers
116 views
Java: Exceptions
Hi,
Why is this code correct:
try
{
} catch(ArrayOutOfBoundsException e)
{
}
and this wrong:
try
{
} catch(IOException e)
{
}
This code is wrong because in the try-body …
1
vote
4answers
166 views
In the try catch block is it bad to return inside the catch? which is good practice
In the try catch block is it bad practice to return values from the catch block in C++?
try
{
//Some code...
return 1;
}
catch(...)
{
return 0;
}
Which method of usi …
1
vote
2answers
147 views
Segmentation fault when catching exceptions in a libpthread linked app ( linux, C++ )
Hi
I have this piece of code here:
These are functions used to create and stop a pthread:
void WatchdogController::conscious_process_handler_start() {
if ( debug ) cout < …
-2
votes
6answers
180 views
Can anyone help with my 2 Java issues I have. 1 is try catch 2 is where to put a piece of code.
I have a piece of coding I am working on for an assignment for uni and in truth I'm not that great with Java, but I have tried. I'm trying to get my try catch to work but it never …
1
vote
5answers
196 views
Is it bad to use nested Try..Catch blocks like this?
Is this a bad idea? Is there a better way to achieve the same effect?
// assume that "name" is a string passed as a parameter to this code block
try
{
MainsDataContext dx = ne …
4
votes
8answers
245 views
C# catch a stack overflow exception
Hello,
I got a recursive call to a methode that throw a stack overflow exception. The first call is surrounded by a try catch block but the exception is not caught.
Do the stack …
