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 9060947
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T15:21:44+00:00 2026-06-16T15:21:44+00:00

I have gone through this interview http://www.artima.com/intv/handcuffs.html and some article and discussion about checked

  • 0

I have gone through this interview
http://www.artima.com/intv/handcuffs.html
and some article and discussion about checked exception. That said checked exception is untried experiment to bring in java. It can bring versionability and scalability issues. Bruce eckel also provide a adapter to convert checked exception to unchecked exception to avoid called force to catch exception. I also heart hibernate move from checked exception to unchecked exception. I wonder what if we remove checked exception mechanism? I also agree that checked exception is not necessary existed.

  • 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-16T15:21:45+00:00Added an answer on June 16, 2026 at 3:21 pm

    Not a lot would happen, actually. On the VM level, all exceptions are unchecked. You can verify this by doing e.g. the following:

    public class A {
        public static void a() {
            /* Do nothing */
        }
    }
    
    public class B {
        public static void main(String[] args) {
            A.a();
        }
    }
    

    Store these classes in their respective files A.java and B.java and compile them. Then, change A to the following:

    public class A {
        public static void a() throws Exception {
            throw(new Exception("foo"));
        }
    }
    

    Recompile A.java without recompiling B.java. Then run B, and you’ll see the thrown exception from A propagating and terminating the program as if it were a RuntimeException, without the VM complaining of linkage errors or anything.

    Checked exceptions are merely a syntax-level feature of the Java language. Removing it wouldn’t affect the VM implementation or even the language model one bit.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have gone through the article http://developer.android.com/resources/articles/avoiding-memory-leaks.html . In this article it is suggested
I have gone through the article http://android-developers.blogspot.com/2009/01/avoiding-memory-leaks.html . In this article it is suggested
I have gone through this article http://msdn.microsoft.com/en-us/library/system.clscompliantattribute.aspx and would like to understand its real
I have gone through this page... http://www.php.net/manual/en/function.hash.php MD5 is 32 characters long while sha1
From my previous question for selecting specific html text, I have gone through this
First off I have gone through this link http://codex.wordpress.org/Integrating_WordPress_with_Your_Website . I cannot use this.
I have gone through this article but still i am not very much clear
I have gone through this article by Encosia and this article by Travis and
I have gone through this to change the color of my title bar. I'm
I have gone through this and this , but the question I am asking

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.