Tagged Questions
The runtime-exception tag has no wiki summary.
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
634 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
0answers
93 views
RunTimeException in running timerTask in android
In my android service I am running a simple timer but android throws exception...
My code as follows
public class MyService extends Service{
private Timer timer = new Timer();
public void ...
1
vote
2answers
417 views
Android app fails to load on some phones in PathClassLoader
I have an app, let us call it 'com.company.foo', with a main Activity 'FooBar'. In my AndroidManifest.xml, I have
<application android:label="@string/app_name"
...
1
vote
3answers
487 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
9 views
Runtime Exception while creating EJB Object
I have developed an application with Java 1.6, EJB-2.1. The application is deployed on JBossAS-5.1.0. The application has been running very smooth for long a time. But for last two days, I found ...
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
54 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
189 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
1answer
71 views
List of Spring Runtime Exceptions
Does anyone know where I can find a list of Spring's (3.0.x) runtime exceptions? I'm talking about exceptions like DataRetrievalFailureException; there's a whole set of these runtime exceptions that ...
0
votes
1answer
79 views
java.lang.RuntimeException - showing the Map activity after fb login
I had the stand-alone app that was able to show the map using the Google Maps Api. My idea was to integrate a facebook login so that an user can enter with name and pass. I did that but now I receive ...
0
votes
0answers
46 views
HGE - Access violation when calling hgeSprite.Render
I have a problem when trying to run my game that uses the Haaf's Game engine, this exception is thrown:
Unhandled exception at 0x72daad10 (TakaGUI.dll) in Game.exe: 0xC0000005: Access violation ...
0
votes
3answers
740 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{
...