Tagged Questions
8
votes
4answers
1k views
How to properly catch RuntimeExceptions from Executors?
Say that I have the following code:
ExecutorService executor = Executors.newSingleThreadExecutor();
executor.execute(myRunnable);
Now, if myRunnable throws a RuntimeExcpetion, how can I catch it? ...
5
votes
2answers
68 views
do checked exceptions happen at run-time?
I am confused with the naming of runtime exception of java.
Those checked exceptions, like SQLexception, also happen during the execution of a program.
Why only those unchecked ones called runtime ...
5
votes
4answers
645 views
Why NullPointerException is a runtime exception and RemoteException not?
A possible reason because a NullPointerException is a runtime exception is because every method can throw it, so every method would need to have a "throws NullPointerException", and would be ugly. But ...
3
votes
2answers
70 views
Cascading runtime errors in Java Swing
I'm currently integrating some new classes into an existing application. I have a JDialog which, when clicked, throws a number of runtime exceptions.
I'm new to Java debugging - why would all of ...
3
votes
6answers
1k views
Equivalent of IllegalArgumentException of Java in C++
In Java if an input argument to a method is invalid, we can throw an IllegalArgumentException (which is of type RuntimeException). In C++, there is no notion of checked and unchecked exceptions. Is ...
2
votes
4answers
637 views
Handling runtime exceptions in Java
Can anyone explain how to handle the runtime exceptions in Java?
Thanks,
Ravi
2
votes
6answers
2k views
Wrap exceptions by runtime exceptions with an annotation
Is there a way to annotate a method so all exceptions thrown are converted to runtime exception automagically?
@MagicAnnotation
// no throws clause!
void foo()
{
throw new Exception("bar")'
}
1
vote
3answers
489 views
Checked vs Unchecked exception
I've studied that: With an unchecked exception, however, the compiler doesn't force client programmers either to catch the exception or declare it in a throws clause. In fact, client programmers may ...
0
votes
1answer
38 views
AndroidRuntime - Unable to instantiate application on mac os
I'm getting the following error:
E/AndroidRuntime(1840): java.lang.RuntimeException: Unable to
instantiate application com.mypackage.ui.misc.MyApplication:
java.lang.ClassNotFoundException: ...
0
votes
2answers
55 views
android : call java webservice exception -java.lang.RuntimeException
HI am trying to call a webservice from android application.
Am passing a serializable object Person from my android application to the calling webservice. and at the server side am taking this ...
0
votes
1answer
190 views
Error: Registry key 'Software\JavaSoft\Java Runtime Environment'\CurrentVersion'?
When I run:
C:\Users\ashahria\Downloads>java -jar schemaSpy_5.0.0.jar
i get below error. What is wrong? How to fix it?
Error: Registry key 'Software\JavaSoft\Java Runtime ...
0
votes
3answers
742 views
Android homescreen project, RuntimeException
I developed a android homescreen, the code seems right but when I run the project I get the following error:
java.lang.RuntimeException:
Unable to instantiate activity ...
0
votes
2answers
126 views
Runtime Java Class extension not working
Good day,
I have the following problem:
class B extends class A and methods of both are called by another method in another class after instantiating class B (example follows):
public class A{
...