try-catch is a syntactic construct for catching exceptions raised by a code section

learn more… | top users | synonyms (5)

1
vote
0answers
18 views

How can I get the full error message returned from a linked server query?

I've created a procedure on a MySQL server which will always throw an error due to a primary key violation, this would be called from a Microsoft SQL Server over a linked server using this: EXEC ...
-3
votes
2answers
50 views

Catching exception from out of index

I have some main file which i can not edit. There are some things to be done and i am writing classes suitable to main file. v1 object is an instance of my own vector class. At some point of main i ...
0
votes
3answers
39 views

Java Nested Exception Handling

I came across a code base that read a text file and analyzes it. I am bit confused with the way the exceptions are used. A separate class AppFileReaderException that extends exceptions has been ...
0
votes
0answers
18 views

Paypal Error "return to your homepage and restart your activity. Try again in 30 min

I wish you can help me. I have used Paypal Classic API to connect with Paypal Gateway. It was working before on sandbox environment. I connected to live paypal just to test the connection (no ...
1
vote
4answers
103 views

How do I use a variable outside of a try/catch?

I have an application where the user is inputting a user name and the application is returning the user ID from a database query. The problem I am having is how do I display the userID in the ...
1
vote
1answer
19 views

JSLint error: Expected 'ignore' and instead saw 'ex'

I use JSLint all the time, but just today, I came across an error that I've never seen before. With the following code, I got the error shown below: try { ...
0
votes
1answer
62 views

Catch a Memory Access Violation in C++

In C++, is there a standard way (or any other way, for that matter) to catch an exception triggered by a memory access violation? For example, if something went wrong and the program tried to access ...
1
vote
4answers
39 views

Regex or Try Catch to Validate Double - Best Performance

I'm having some variables passed over from the client side to the server. One of the variables should be received as a double but occasionally we get some string or null variables through from the ...
2
votes
5answers
67 views

If-Else statements vs Exception-Catcher?

I got tired of adding seemingly endless if-else statements into my code, so I wondered if it would be better practice if I'd just catch Exceptions if something wasn't right. Eg. instead of saying: ...
-1
votes
2answers
49 views

How to use a variable from a method (inside Try-Catch) in another class?

So I'm trying to create a basic RPG userID selection menu using JFrames; I opted to display the ID options using radio buttons. Once the user selects and ID I burp it back using a JOptionPane. All ...
-1
votes
0answers
20 views

hot set loader image while getting catch exception error in windows phone? [closed]

Hi i am developing windows phone 7.i want to set loader image or refresh button on catch exception,like when i am getting catch exception error while i want set loading image in windows app.please ...
1
vote
2answers
53 views

How do I handle thows/exceptions in a container class safely?

I am currently working on a container class that uses allocators to manage the resources.I'll try to give a short version of what I currently do to resize the container. (The real one is not ...
1
vote
1answer
27 views

Error handling within parApply (in R, using parallel package)

I am trying to troubleshoot the following message I get when trying to use the parApply function from the parallel package: Error in unserialize(node$con) : error reading from connection The ...
0
votes
1answer
33 views

JavaScript using Try Catch or If Else for performance

I am experimenting with deep object trees of data and now I would like my code factoring now. Many times I have to check if a whole branch exists to set or unset a value in. I'm using a lot of 'if ...
-1
votes
2answers
44 views

Java Nested try catch block unreachable issues

Here is part of my code...when i want to compile it it always shows Unreachable catch block for SelfDefineException. This exception is never thrown from the try statement body how can i fix it, ...
1
vote
3answers
62 views

How to use try catch error for sql query timeout?

How can i use try catch if there is an error in the connection to the sql query in c#? If I use the simple code below it does work but the time it takes for an error to occur is too long. How can I ...
4
votes
3answers
91 views

Can't get the try-catch-finally block to work

I have struggled a long time to get the try-catch-finally block to work. I'm a beginner in java, and are currently learning how to read/write/handle exceptions. In my task I'm trying to read from two ...
0
votes
2answers
20 views

Save mobile number in a file android

I have developed an android app that enable the user to register by his/her mobile phone number. I want my app to save the phone number so that next time the user open the app, there will be no need ...
0
votes
2answers
29 views

Nesting multiple try/catches - is there a better approach?

I'm making a signup process that ends with a final script where the majority of the heavy lifting is done, after a user has made payment. These processes include: Updating our sales DB several times ...
1
vote
2answers
30 views

Which Catch Execption to use?

I want a messagebox to pop up when checkbox R1P1 is NOT checked using try and catch. But I have no clue what to put inside the () in catch? private void button2_Click(object sender, EventArgs e) ...
1
vote
2answers
61 views

How to implement a try-catch block in scheme?

I'm trying to implement a try-catch block in scheme using (call-cc) method but i'm not sure how it can be used for that. I could not find any example. And found examples contains just error-handling ...
2
votes
3answers
53 views

What is the good practice to terminate program in catch clause

I have a method throws an Exception public int myMethod throws Exception I have another function calls myMethod function and hava try-catch block. I throws a runtime exception to enforce the ...
0
votes
4answers
38 views

Does a thread notity another joined thread when it finishes execution?

I'm developing an Android app. I have two threads. The first one has to wait the second one. I have this code on the first thread run method: @Override public void run() { synchronized ...
2
votes
2answers
52 views

How to check null value of object in decision statement for Objective C

I am getting a object value from server as null value when NSlog this object.I want to identify it in if-else decision statement. How can I check it because nil have reference to a unknown object ...
0
votes
0answers
24 views

How to ouput a location to the sms intent?

I am trying to call a string that is inside of try catch. try{ Criteria criteria = new Criteria(); String bp = lm.getBestProvider(criteria, false); Location ...
0
votes
3answers
33 views

Break from try/catch block

Is this possible in PHP? try{ $obj = new Clas(); if($obj->foo){ // how to exit from this try block? } // do other stuff here }catch(Exception $e){ ] I know I can put the other ...
0
votes
1answer
33 views

PHP try-catch not recognized on command-line? (Trying to install Composer)

I am trying to install Composer (http://getcomposer.org/download/) on a GoDaddy-hosted Linux server but it's not working. No matter which method I try, I eventually run up against some version of the ...
61
votes
5answers
3k views

Is it expensive to use try-catch blocks even if an exception is never thrown?

We know that it is expensive to catch exceptions. But, is it also expensive to use a try-catch block in Java even if an exception is never thrown? I found the Stack Overflow question/answer Why are ...
0
votes
1answer
42 views

Powershell Try&Catch Run multiple commands inside try

Hi I am trying to figure out how to do this or another way of doing it try { Get-ADComputer -Identity namedoesnotexist (Get-ChildItem).FullName } catch {$_ | Out-File log.log} When running this ...
-1
votes
1answer
69 views

Code in try block is not running for the second time

I have a static method: public static String languageDetection(String input) { String lang = null; try { DetectorFactory.loadProfile(PROFILE_PATH); Detector detector = ...
0
votes
0answers
33 views

How do I output the location to sms intent?

I am having a trouble to call try catch to output it to the sms intent. try{ Criteria criteria = new Criteria(); String bp = lm.getBestProvider(criteria, false); ...
0
votes
1answer
77 views

php laravel - try-catch not working

my api controller: $POST /api/member/logout public function post_logout(){ try{ member::logout(); return Response::json([], 200); }catch(Exception $e){ print_r($e); ...
0
votes
1answer
24 views

TransactionException Hibernate when MySQL is closed

Here's a little code fragment: try { session = HibernateUtil.getSession(); session.beginTransaction(); u = (UserDetails) session.get(UserDetails.class, ...
-1
votes
10answers
108 views

When finally is executed? [duplicate]

I have this java code with nested try: try { try { [ ... ] { catch (Exception ex) { showLogMessage(ex); return; } while (condition == true) ...
1
vote
1answer
37 views

keyboard interrupt with with python gtk?

So just like the question says, I'm trying to let keyboard interrupts happens while Gtk.main() is in progress, however, it just doesn't seem to notice that the keyboard interrupt happens until after ...
-3
votes
3answers
42 views

finding key in dict using try except

My function is: def searchstock(): dictionary=calcreturn(dictionize(tickers(openfile()),pairslist())) inp=raw_input("What is the stock ticker? ") while True: try: dictionary[inp] ...
0
votes
0answers
23 views

IronPython: Catch OverflowError/StackOverflowException

I let the user write a python file and I execute it with exec. But when the user has a OverflowError than the hole program will crash. How can I prevent this? This does NOT work: try: f(*args) ...
0
votes
1answer
74 views

String was not recognized as a valid DateTime object

try { foreach (DataRow row in tempTable.Rows) { row["Start_Date"] = objUtil.ConvertDate(row["Start_Date"].ToString(), "yyyyMMdd").ToString("MM/dd/yyyy hh:mm:ss").Replace("12:00:00 AM", ...
0
votes
1answer
25 views

Python Dictionary KeyError and Multiple Dictionaries

I have 3 dictionaries a = {1:'this' ,2:'is' ,3:'an' ,4:'example'} b = {4:'this' ,5:'is' ,6:'example'} c = {7:'this' ,8:'is'} and this for i in range(10): print a[i] ,b[i] ,c[i] it causes a ...
-1
votes
2answers
51 views

A way to prevent non-throwing-exceptions code from executing without putting both throwing and non-throwing code in one try block [closed]

In my program, I have an inner listener class. Its purpose is to open a file and read data from it: // This declaration is outside of the inner class. SimulationModel model; // End of declarations. ...
1
vote
1answer
48 views

How do I know what errors are being thrown in my try-catch blocks?

When I'm building my programs, I have a number of try-catch blocks and when they throw errors, I seem to have trouble seeing what caused the error - I've tried looking at the stack-trace but I always ...
0
votes
2answers
51 views

Can't use try-with-resources or finally block

My code is reading an HTML page from the web and I want to write good code, so I would like to close the resources using try-with-resources or finally block. With the following code it seems ...
1
vote
3answers
142 views

Try catch not working properly

I am trying to insert a new member into database, when there is a duplicate the catch block works ok. But when there is a new member both try and catch blocks return their messages. here is my code. ...
0
votes
0answers
37 views

SQL Server 'Execute As'/Revert pattern in a 'Try/Catch' Block

I wish to ensure I am using the "best" pattern when using an Execute As/Revert from within a Try/Catch block on SQL Server 2012. The below code "seems" to behave correctly... Am I missing anything or ...
1
vote
3answers
41 views

How do I get a line of the what the console returns (string) and place in a variable?

I have code that is using telnet and requires a login. If the login is incorrect, it returns "Incorrect login" to the console. I want to catch this exception and skip it so it doesn't stop the ...
0
votes
0answers
37 views

Facebook app in php: login doesn't work

My app can't show the link to the facebook login, and I really don't know why. I think that the problem is in the try/catch because if I leave it, I can view my id and my application's form. here ...
0
votes
8answers
120 views

Try, catch statement in C#

I have the following C# code for calculating each file's hash in a certain, user specified directory. The point is that it works fine, until it encounters a file that it cannot access. When it finds ...
0
votes
3answers
32 views

'try with resource' feature for File class

I have one scenario where I am trying to implement with the Java 7 'try with resource' feature. My finally block contains an object of BufferedWriter and File, which I want to close using 'try with ...
3
votes
1answer
58 views

Can catch() be written to convert from one object type to another?

Given this code, where A is in a 3rd-party library, and B is code I wrote: class A {...}; class B { public: B( const A &a ); ... }; try { A a(...); throw a; } catch ( const B &b ) { ...
2
votes
3answers
46 views

Catch statement does not catch thrown error

For some reason this code gives me an uncaught exception error. It seems the catch block is not catching the error. Are try catch blocks scoped in such a way that I cannot throw an error in a nested ...

1 2 3 4 5 37