Tagged Questions
The thread-exceptions tag has no wiki summary.
7
votes
8answers
9k views
How to throw a checked exception from a java thread?
Hey, I'm writing a network application, in which I read packets of some custom binary format. And I'm starting a background thread to wait for incoming data. The problem is, that the compiler doesn't ...
5
votes
3answers
7k views
android.os.NetworkOnMainThreadException
In the below code i got an error when running my android project for RssReader.
URL url= new URL(urlToRssFeed);
SAXParserFactory factory =SAXParserFactory.newInstance();
...
3
votes
3answers
904 views
Why do AppDomain exceptions invariably terminate the application?
This is related to a previous question.
What I'm trying to understand now is how come UI thread exceptions can be prevented from terminating the application while non-UI exceptions can't be.
For ...
2
votes
3answers
174 views
Evaluation requires a thread to run temporarily. Use the Watch window to perform the evaluation
I'm completely stuck. I'm testing MetaTrader API and getting next error when tries to run a method in the Immediate Window of VS 2010:
A first chance exception of type ...
2
votes
1answer
418 views
Using ThreadExceptionEventHandler: determine which thread caused the exception
Using the Application.ThreadExceptionEventHandler, is it possible to determine which thread caused the exception (the thread id)?
The same question applies to using the ...
1
vote
1answer
324 views
My “MyException” which shows Toast causes trouble while thrown in threads. How should I reorganize Exception handling?
I have written my own Exception (MyException) and implemented Logging and showing Error Messages in Form of Toasts. Here is the shortform of it...
public class MyException extends Exception {
...
0
votes
0answers
45 views
ThreadAbortException when calling Assembly.CreateInstance
We intermitently get a ThreadAbortException when calling Assembly.CreateInstance
Here is the code:
/// <summary>
/// Gets the name of the assembly
/// </summary>
public ...
0
votes
2answers
184 views
Thread exception on SelectedNode = .Nodes[0]
Why do i get System.Threading.ThreadStateException?
void setupTree(TreeView tv, MyObj o)
{
tv.Invoke((MethodInvoker)delegate
{
tv.Nodes.Clear();
...