Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
9answers
751 views

Differences betweeen Exception and Error

I'm trying to learn more about basic Java and the different types of Throwables, can someone let me know the differences between Exceptions and Errors?
13
votes
11answers
9k views

When should Throwable be used instead of new Exception?

Given: Throwable is Exception's superclass. When I read tests on writing your own 'exceptions', I see examples of Throwable being used in the catch block and other text's show new Exception() being ...
11
votes
7answers
1k views

Extending Throwable in Java

Java lets you create an entirely new subtype of Throwable, e.g: public class FlyingPig extends Throwable { ... } Now, very rarely, I may do something like this: throw new FlyingPig("Oink!"); and ...
10
votes
14answers
2k views

Is there a favored idiom for mimicing Java's try/finally in C++?

Been doing Java for number of years so haven't been tracking C++. Has finally clause been added to C++ exception handling in the language definition? Is there a favored idiom that mimics Java's ...
5
votes
4answers
907 views

JUnit @Test expected annotation not working

I've got the following test: @Test(expected = IllegalStateException.class) public void testKey() { int key = 1; this.finder(key); } But JUnit reports, that the test fails, although it ...
5
votes
4answers
443 views

Why doesn't Java support generic Throwables?

class Bouncy<T> extends Throwable { } // Error: the generic class Bouncy<T> may not subclass java.lang.Throwable Why doesn't Java support generic Throwables? I realize that type ...
5
votes
5answers
7k views

Exception vs Throwable in Java

I know throw new Exception(); has a pretty large overhead, since it creates a full stackTrace, etc. Does throw new Throwable(); present the same problem? Is this behaviour inherited, or does ...
4
votes
4answers
4k views

Best practices for catching Throwable in Java

Sometimes, you just have to catch Throwable, e.g. when writing a dispatcher queue that dispatches generic items and needs to recover from any errors (said dispatcher logs all caught exceptions, but ...
4
votes
6answers
547 views

What is the preferred Throwable to use in a private utility class constructor?

Effective Java (Second Edition), Item 4, discusses using private constructors to enforce noninstantiability. Here's the code sample from the book: public final class UtilityClass { private ...
3
votes
6answers
267 views

Is it a bad practice to catch the Throwable?

Is it a bad practice to catch the Throwable? For example something like this: 1. try { 2. // Some code 3. } catch(Throwable e) { 4. // handle the exception 5. } Is this a ...
3
votes
3answers
108 views

Question about Java.lang.Error

There are lot of posts on java.lang.Error saying it should not be caught. My question is if it should not be caugth the what is the use of it. Since it is Throwable so we can catch it in try catch. I ...
3
votes
6answers
1k views

Why does Exception.fillInStackTrace return Throwable?

I think Exception.fillInStackTrace should return Exception or derived Exception objects. Considering the two functions below, public static void f() throws Throwable { try { throw new ...
2
votes
5answers
168 views

Using Throwable for Things Other than Exceptions

I have always seen Throwable/Exception in the context of errors. But I can think of situations where it would be really nice to extend a Throwable just to break out of a stack of recursive method ...
2
votes
3answers
193 views

Is it possible to throw a java exception through the calling method of a base class that does not throw exceptions?

This may be a ridiculous Java question about exception handling, but I have a UI actor (an Android Activity) that is requesting services from my subclass of ContentProvider. The subclass wants to ...
1
vote
2answers
282 views

why isn't java.lang.Throwable an abstract class?

Possible duplicate: why-is-java-lang-throwable-a-class Hi! I doesn't understand why Throwable isn't abstract class. I see only one use case for these: in logging systems for figure out call ...
1
vote
2answers
519 views

good documentation about “avoid catching throwable”, in context of weblogic server

i am currently refactoring an existing codebase (EJBs...) to rip out all blocks where a Throwable is catched inside of the EJB. try { ... do some business logic } catch(Throwable t){ ... log ...
1
vote
2answers
184 views

Which subclass of Throwable should be caught and which shouldn't?

API doc says never catch Throwable subclass Error which signifies abnormal behavior. Does it implies that the segregation between Error and Exception is to tell programmers that which subclass should ...
0
votes
4answers
209 views

Catching Throwable in Blackberry Java: Good Idea?

I often see catch clauses for Throwable in Blackberry documentation, such as the Network API docs. My sense is that this is not generally a good practice in Java. Is there a reason for this in ...
0
votes
6answers
121 views

Is there anything wrong with my Factory class?

class PieceFactory { @SuppressWarnings("rawtypes") public Piece createPiece(String pieceType) throws Throwable{ Class pieceClass = Class.forName(pieceType); Piece piece ...