Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to catch exception out side the Thread which is occurred while Thread is running.
I have tried to throw new exception but though it shows me error that "unreported exception...must be caught or declared to be thrown".2 if it's not possible then why? if you can explain reason.

here is my code

try {


            log("Connecting to Module..");
            int no = searchdevices.getSelectedIndex();
            String Selectaddress = searchdevices.getString(no);
            String name = Selectaddress.substring(0, 6);
            String add = Selectaddress.substring(Selectaddress.indexOf("$") + 1);
            if (no == -1) {
                Alert al = new Alert("Warning", "" + no, null, AlertType.WARNING);
                al.setTimeout(3000);
                display.setCurrent(al);
            }
            final String fdata2 = "btspp://" + add + ":1;master=false;encrypt=false;authenticate=false";
            finalurl = fdata2;
            fbtname = name;
            // fbtadd = add;
            new Thread(new Runnable() {

                public void run() {
                    try {

                        isConnOpen = true;
                        stream = (StreamConnection) Connector.open(fdata2);
                        in = stream.openInputStream();
                        out = stream.openOutputStream();
                        url2 = fdata2;

                        GoTo_Success();

                    } catch (IOException ex) {

                      throw new Exception();//in side exception 
                    }
                }
            }).start();
        } catch (Exception e) {
            log("Please switch on bluetooth and then try again"); // want to catch here..
        }

Thank You.

share|improve this question
Show us your code where you are trying to throw exception. – Harry Joy Apr 30 '11 at 5:48
I have put code. – Nirav Apr 30 '11 at 5:53

4 Answers

up vote 1 down vote accepted

Well given that a thread runs at the same time your code runs how could it catch the exception? Once you call start() the thread starts up (well, at some point after that call probably) and the rest of the program moves on past the catch.

Say, for example, the Thread is created and started in a method called "foo". Once you do start, the foo method reaches the end and returns to whatever called it. That then calls a method "bar". At that point in time the new Thread is actually scheduled to run, so the "bar" method is suspended and the run method in the Thread is executed. Now the exception happens. The program is far far far away from the catch you are trying to have happen. Even if it were not that part of the program is asleep.

share|improve this answer
Yes, You are right.we can not handle the past only we can handle either current or future. am I right? – Nirav Apr 30 '11 at 6:11
Take a look at the java.util.concurrent package (download.oracle.com/javase/tutorial/essential/concurrency/…). I guess you could say the current/future bit. – TofuBeer Apr 30 '11 at 6:30

When you throw a new exception in catch you have to handle it surrounding it with try..catch.

Try this:

new Thread(new Runnable() {

             public void run() {
                 try {

                     isConnOpen = true;
                     stream = (StreamConnection) Connector.open(fdata2);
                     in = stream.openInputStream();
                     out = stream.openOutputStream();
                     url2 = fdata2;

                     GoTo_Success();

                 } catch (IOException ex) {

                   try {
                    throw new Exception();
                } catch (Exception e) {
                    e.printStackTrace();
                }//in side exception 
                 }
             }
         }).start();
share|improve this answer
yes, but there is another catch below the line "}).start();", I want to catch exception there. I have mentioned in comment. – Nirav Apr 30 '11 at 6:01
@Nirav: You may not be able get it there cause what you are doing is creating a new Runnable class and inside it overriding method run. So all exceptions there should be handled in that class only. – Harry Joy Apr 30 '11 at 6:04
yes. I understood. thanks for reply. – Nirav Apr 30 '11 at 6:13

The exception must be declared in the method declaration using a throws clause, only then you can use throw new Exception();

If you see Thread.run() then you will find that there is no throws Exception clause. Therefore you will get a compilation error.

See these links:

  1. http://pages.cs.wisc.edu/~cs368-1/JavaTutorial/NOTES/Exceptions.html
  2. http://download.oracle.com/javase/tutorial/essential/exceptions/
share|improve this answer

If you want to get notified about exceptions in another thread, you'll have to manually transfer the exceptions.

One example would be to use a Queue<Exception> or something like this, and your worker threads would catch any exception that comes and add it to the queue.

The "main thread" (or a special exception handler thread, or the UI thread, or ...) would then regularly poll the queue to see if there is any new exception, and if it is, it could show it to the user.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.