Tagged Questions
0
votes
2answers
33 views
Is it bad to wrap a process around with a catch of runtime exception?
In java i have a method and a try catch that catches exceptions and also RuntimeException. Are there issues with catching the general RuntimeException?
0
votes
0answers
32 views
What causing this Android RuntimeException?
My android app gives me this error from logcat:
05-23 14:51:56.058: E/AndroidRuntime(1191): FATAL EXCEPTION: main
05-23 14:51:56.058: E/AndroidRuntime(1191): java.lang.RuntimeException: Unable to ...
3
votes
2answers
91 views
Java - How to deal with checked exceptions *as a group*?
EDIT: This question relates to Java 1.6 (and below). Apologies for not making this clear in the original post.
The hierarchy here shows Java Exception is divided into two types: RuntimeException and ...
3
votes
2answers
258 views
Java uncaughtExceptionHandler not working
I have a global exception handler routine which wraps some exceptions in runtime exceptions
Like this
public class ExceptionHandler
{
public static void handle(){
throw new RuntimeException(e);
...
2
votes
2answers
870 views
Unmarshalling errors in Android app with custom parcelable classes
For my Android application, I get several unmarshalling errors although I think I've done everything that is needed to properly save and load objects via Parcelables. Can you tell me what's wrong with ...
4
votes
3answers
306 views
Is it possible to catch all exceptions except runtime exceptions?
I have a statement that throws a lot of checked exceptions. I can add all catch blocks for all of them like this:
try {
methodThrowingALotOfDifferentExceptions();
} catch(IOException ex) {
...
1
vote
1answer
184 views
How to solve this hibernate runtime exception?
I am trying to run following code in eclipse
package com.trial;
import java.sql.*;
import java.io.*;
import org.hibernate.*;
import org.hibernate.cfg.*;
public class AddStudent {
private ...
0
votes
0answers
221 views
dalvikvm: thread exiting with uncaught exception
I have referred to the accepted answer of the post "java thread exceptions".
My question is how can I avoid the following warning message in the log cat:
10-16 15:29:47.009: W/dalvikvm(3813): ...
1
vote
3answers
217 views
Why runtime exception is unchecked exception?
Generally if any class extends Exception , it becomes checked exception. Runtime exception also extends Exception. Then how is it unchecked exception?
Is it like they have a custom check in compiler ...
4
votes
1answer
136 views
Method Over riding and Inheritance and Exceptions
Can a method in a subclass override a method in the parent class and throw a run time exception when the method in the parent class throws no exception? Something like this:
class X { public void ...
0
votes
1answer
97 views
java: Exceptions: always reach finally? [duplicate]
Possible Duplicate:
Does a finally block always run?
let's imagine the following scenario:
public void myMethod() throws MyException
try
{
// do something
// an Exception ...
2
votes
4answers
96 views
Design issue: to what extent should I rely on exceptions for the flow of control?
I am working on a java web application and I have a few questions regarding design.
Basically in its current version, it relies heavily on catching exceptions to determine the flow of control.
For ...
5
votes
1answer
450 views
Guava EventBus: don't catch RuntimeException
I use guava's EventBus, unfortunately it catches and logs the InvocationTargetException that occurs when an event-handler throws a RuntimeException. Can i disable this behaviour?
0
votes
1answer
1k views
how to resolve org.eclipse.core.internal.resources.ResourceException
i never encountered this exception before
org.eclipse.core.internal.resources.ResourceException: Resource '/External Plug-in Libraries' is not open.
at ...
0
votes
1answer
529 views
When using a WSDL-first approach to generate java stubs, is there a way to make exceptions extend RuntimeException instead of Exception?
Is there a way to force JAXB to generate exceptions which extend java.lang.RuntimeException instead of Exceptions when using a WSDL-first approach?
I'm using a WSDL-first approach for my Java web ...
2
votes
1answer
192 views
How do i catch unchecked exceptions in SWT's event-loop
i guess the question is pretty clear, i want to catch (and log) RuntimeException that occur in SWT's event-loop. Right now i'm wrapping all my calls to code in a Runnable which logs any ...
2
votes
2answers
275 views
call method with checked exception
As I know if method throws an exception Java compiler forces the caller of that method to catch that exception.
I see that parseInt throws NumberFormatException :
public static int parseInt(String ...
63
votes
7answers
24k views
Java: checked vs unchecked exception explanation
I have read multiple posts on StackOverFlow about checked vs unchecked exceptions. I'm honestly still not quite sure how to use them properly.
Joshua Bloch in "Effective Java" said that
Use ...
0
votes
2answers
4k views
Proper use of RuntimeException? [duplicate]
Possible Duplicate:
In Java, when should I create a checked exception, and when should it be a runtime exception?
When should I derive an exception from RuntimeException instead of ...
2
votes
2answers
2k views
Please explain RuntimeException in Java and where it should be used
I am following this great discussion at SO, titled: The case against checked exceptions , but I am unable to follow where exactly RuntimeException should be used and how it is different from normal ...