Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8988301
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T21:59:22+00:00 2026-06-15T21:59:22+00:00

Is it possible to construct a snippet of code in Java that would make

  • 0

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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T21:59:23+00:00Added an answer on June 15, 2026 at 9:59 pm

    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 ChuckNorrisException, but at runtime provide a class definition of ChuckNorrisException which does not extend Throwable.

    UPDATE:

    It doesn’t work. It generates a verifier error:

    Exception in thread "main" java.lang.VerifyError: (class: TestThrow, method: ma\
    in signature: ([Ljava/lang/String;)V) Can only throw Throwable objects
    Could not find the main class: TestThrow.  Program will exit.
    

    UPDATE 2:

    Actually, you can get this to work if you disable the byte code verifier! (-Xverify:none)

    UPDATE 3:

    For those following from home, here is the full script:

    Create the following classes:

    public class ChuckNorrisException
        extends RuntimeException // <- Comment out this line on second compilation
    {
        public ChuckNorrisException() { }
    }
    
    public class TestVillain {
        public static void main(String[] args) {
            try {
                throw new ChuckNorrisException();
            }
            catch(Throwable t) {
                System.out.println("Gotcha!");
            }
            finally {
                System.out.println("The end.");
            }
        }
    }
    

    Compile classes:

    javac -cp . TestVillain.java ChuckNorrisException.java
    

    Run:

    java -cp . TestVillain
    Gotcha!
    The end.
    

    Comment out “extends RuntimeException” and recompile ChuckNorrisException.java only :

    javac -cp . ChuckNorrisException.java
    

    Run:

    java -cp . TestVillain
    Exception in thread "main" java.lang.VerifyError: (class: TestVillain, method: main signature: ([Ljava/lang/String;)V) Can only throw Throwable objects
    Could not find the main class: TestVillain.  Program will exit.
    

    Run without verification:

    java -Xverify:none -cp . TestVillain
    The end.
    Exception in thread "main"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As question stated, would like to know is that possible to construct jQuery object
Is it possible to construct a PCRE-style regular expression that will only match each
Since it is possible to construct a tcp socket and a udp socket that
Possible Duplicate: question about copy constructor if I have this snippet of the code
Is it somehow possible to use boost::object_pool<>::construct with non const references? The following snippet
Is is possible to construct a regular expression that rejects all input strings?
Is it possible to construct a parameterized class in Matlab? For example in Java
Would it be possible to construct SQL to concatenate column values from multiple rows?
Is it possible to construct a query so that I can find out what
Is it possible to construct raw SQL queries in Django so that they accept

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.