The `Throwable` class is the superclass of all errors and exceptions in the Java programming language. Only objects that are instances of this class (or one of its subclasses) are thrown by the Java VM or could be thrown by the Java `throw` statement.

learn more… | top users | synonyms

0
votes
2answers
85 views

How to get the method name from which the exception is thrown? [closed]

I need to get the class name and the method name from which the exception is thrown. How can I do that? Thanks in advance. My code: private void setErrorDetails(final Throwable cause) { for ...
9
votes
4answers
223 views

If a NoClassDefFoundError is caused by a ClassNotFoundException, why does Java expect you to catch both throwables?

When I run this code the app exits with a ClassNotFoundException: //uncaught ClassNotFoundException try { Class<?> clazz = defineClass(null, bytes, 0, bytes.length, null); ...
2
votes
2answers
72 views

Catching Exception in java to make application continue its execution

This is what i have right now, this method open's a connection with http url, public static void setCameraList(String list) { URL calculator; try { String url = ...
0
votes
2answers
74 views

Throw nested exception through java Throwable

I trying to throw inner exception in another exception through java Throwable but IDE told my that you must surround it with try/cath, What should I do to avoid from this problem? try { ...
3
votes
2answers
39 views

Should a control library that runs user-supplied code intercept Exceptions or Throwables?

I've seen here many general questions about the difference between Exception and Throwable. I know the difference, and I have a more specific question. I'm writing a library that binds and runs ...
0
votes
1answer
55 views

Overloading the getCause() method in a throwable object

How would one go about overloading the getCause() method in a throwable object ? I have the following but it doesn't seem to work as it says that it cannot be overloaded with a string. public class ...
0
votes
1answer
80 views

Catching all java.lang.Error for logging purposes and allowing them to work their way up the stack

Short version: How do I catch all java.lang.Error thrown in a particular section of code in order to log them, and also allow them to propogate up the call stack as if I hadn't caught them at all? ...
0
votes
1answer
94 views

Java Code working locally but not on remote server [closed]

public class Binary { ArrayList<Integer> list = new ArrayList<Integer>(); //break down the number into a sequence of binary number public void processBinary(long number){ int rest ; ...
6
votes
1answer
104 views

I need an expert to make me understand what Java Throwable's addSuppressed does? [duplicate]

Possible Duplicate: JDK 1.7 Throwable `addSuppressed()` method So Java has a method in the Throwable public final void addSuppressed(Throwable exception) And this is what it does: ...
1
vote
2answers
174 views

Java: Most efficient way to convert an throwable/exception's entire stack trace into a ByteBuffer?

What is the most efficient method to convert an throwable/exception's entire stack trace into a ByteBuffer (in Java)? Specifically, I need to log the entire exception into the database. The ...
0
votes
4answers
198 views

Java - Throwable to Exception

I am currently using the play2 framework. I have several classes which are throwing exceptions but play2s global onError handler uses throwable instead of an exception. for example one of my classes ...
0
votes
0answers
121 views

Java Exception: caused by java.lang.throwable: EXPIRED

I am studing a Java platform project. However, when i run the Main class to start the project service, an exception happened. The exception information is : Exception in thread "main" ...
1
vote
1answer
131 views

Android Threads and Throwables

I have a class (let's call it ABC) that executes I/O. Some things like FileOutputStream.close make you use try catch blocks around them. In addition, I created my own throwable objects that help the ...
2
votes
1answer
286 views

Logging Throwable in main()

Catching Throwable is unadvisable for reasons outlined in different posts. However, would it make sense to have a main structured like below? If the Throwable line is removed, then errors would not be ...
2
votes
4answers
426 views

About java Throwable

when I develop android application,I want to make a CrashReport class and then use it send report to my server. I make a class called CrashHandler which implement UncaughtExceptionHandler,and make a ...
3
votes
5answers
353 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 ...
7
votes
7answers
2k 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 ...
8
votes
5answers
8k 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 ...
0
votes
4answers
330 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
182 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 ...
1
vote
2answers
461 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 ...
2
votes
3answers
376 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 ...
3
votes
3answers
143 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
2answers
2k 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 ...
18
votes
7answers
3k 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 ...
7
votes
5answers
1k 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 ...
2
votes
2answers
343 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 ...
10
votes
5answers
21k 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 ...
3
votes
6answers
3k 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 ...
9
votes
4answers
11k 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 ...
35
votes
9answers
3k 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?
11
votes
15answers
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 ...
16
votes
11answers
23k views

When should Throwable be used instead of new Exception?

Given: Throwable is Exception's superclass. When I read texts on writing your own 'exceptions', I see examples of Throwable being used in the catch block and other texts show new Exception() being ...
4
votes
6answers
912 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 ...