Is it possible to construct a snippet of code in Java that would make a hypothetical java.lang.ChuckNorrisException uncatchable?
Thoughts that came to mind are using for example interceptors or aspect-oriented programming.
|
Is it possible to construct a snippet of code in Java that would make a hypothetical Thoughts that came to mind are using for example interceptors or aspect-oriented programming. |
||||
| show 4 more comments |
|
I haven't tried this, so I don't know if the JVM would restrict something like this, but maybe you could compile code which throws UPDATE: It doesn't work. It generates a verifier error:
UPDATE 2: Actually, you can get this to work if you disable the byte code verifier! ( UPDATE 3: For those following from home, here is the full script: Create the following classes:
Compile classes:
Run:
Comment out "extends RuntimeException" and recompile
Run:
Run without verification:
|
|||||||||||||||||||
|
|
After having pondered this, I have successfully created an uncatchable exception. I chose to name it
Et voila! Uncaught exception. Output:
When I have a little more time, I'll see if I can't come up with something else, as well. Also, check this out:
Causes a stack overflow - again, exceptions remain uncaught. |
|||||||||||||||||||||
|
|
With such an exception it would obviously be mandatory to use a |
|||||||||||||||||||||
|
|
Any code can catch Throwable. So no, whatever exception you create is going to be a subclass of Throwable and will be subject to being caught. |
|||||
|
|
Any exception you throw has to extend Throwable, so it can be always caught. So answer is no. If you want to make it difficult to handle, you can override methods |
|||||||
|
(Granted, technically this exception is never actually thrown, but a proper |
|||||
|
|
My answer is based on @jtahlborn's idea, but it's a fully working Java program, that can be packaged into a JAR file and even deployed to your favorite application server as a part of a web application. First of all, let's define
Now goes
And finally the
Compile and run it with following command:
You will get following output:
No surprise - it's a roundhouse kick after all :) |
|||||||||||
|
|
No. All exceptions in Java must subclass
See the java.lang.Throwable documentation for more information. If you're trying to avoid checked exceptions (ones that must be explicitly handled) then you will want to subclass Error, or RuntimeException. |
||||
|
|
|
In the constructor you could start a thread which repeatedly calls The thread could catch the exception repeatedly but would keep throwing it until it dies. |
|||
|
|
|
The only You can actually "catch" them in the means that a I don't think that |
|||||||||||||||||||
|
|
Yes, and here's the answer: Design your |
|||||||||||||||
|
|
You can keep ChuckNorris internal or private and encapsulate him or swollow him...
|
|||||||||||
|
|
Two fundamental problems with exception handling in Java are that it uses the type of an exception to indicate whether action should be taken based upon it, and that anything which takes action based upon an exception (i.e. "catch"es it) is presumed to resolve the underlying condition. It would be useful to have a means by which an exception object could decide which handlers should execute, and whether the handlers that have executed so far have cleaned things up enough for the present method to satisfy its exit conditions. While this could be used to make "uncatchable" exceptions, two bigger uses would be to (1) make exceptions which will only be considered handled when they're caught by code that actually knows how to deal with them, and (2) allow for sensible handling of exceptions which occur in a |
|||||||||||
|
|
A variant on the theme is the surprising fact that you can throw undeclared checked exceptions from Java code. Since it is not declared in the methods signature, the compiler won't let you catch the exception itself, though you can catch it as java.lang.Exception. Here's a helper class that lets you throw anything, declared or not:
Now
about catching an exception that is not thrown if ChuckNorrisException is a checked exception. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
finalize()? – Lie Ryan Dec 16 '12 at 8:53