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.