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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T13:35:31+00:00 2026-05-13T13:35:31+00:00

I think this is a dumb question but I hear and see the term

  • 0

I think this is a dumb question but I hear and see the term exception handling a lot. I have used try/catch, but i am still wondering what on earth ‘handling‘ means. Can anyone kindly give some example that we can say the exception is actually ‘handled‘?

sorry for poor English, hope i made myself clear.

  • 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-05-13T13:35:31+00:00Added an answer on May 13, 2026 at 1:35 pm

    It means catching an Exception and performing some logic based on its type, so that your application can handle it gracefully rather than abruptly shutting down.

    Here is an example (albeit a contrived one) in Java:

    public int arrayRetrieve(int[] a, int index) {
       return a[index]; 
    }
    

    Given this function, there is no guarantee that index will be a valid position in a. In Java, this will throw an ArrayOutOfBoundsException.

    Code that calls arrayRetrieve needs to be aware of this possibility, and handle this case accordingly:

    int num = 0;
    try {
        num = arrayRetrieve(someArray, 77);
    }  catch (ArrayOutOfBoundsException e) {
        // Set num to a default value, or log an error, or however you want to handle this case
    }
    

    If the ArrayOutOfBoundsException were not caught, this would cause the program to crash instead.

    (One reason I said this example is contrived is because Java in particular has two kinds of Exception – the kind you have to catch explicitly, and the kind you don’t. ArrayOutOfBoundsException is an example of the latter.)

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

Sidebar

Related Questions

This could be an amazingly dumb question, but .... I don't think a standard
I think this could be a very easy question for you. But I have
I think this is a dumb question but I could not find it on
I think this maybe a really dumb question, but i just want to be
I feel really dumb for asking this question, but here it goes. I have
This could be a dumb question, but I have submitted a few apps where
Hi you probably think this is a dumb question but I am trying to
Maybe this is a dumb question, but I have the following behavior in Visual
I know you might think this is a duplicate or a dumb question. But
This might be a dumb question but I have not find the answer when

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.