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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T22:16:51+00:00 2026-05-21T22:16:51+00:00

I am newbie in android so i am not famalier to all errors here

  • 0

I am newbie in android so i am not famalier to all errors here is the error that I am getting (Unreachable catch block for JSONException. This exception is never thrown from the try statement body) in my catch clause while json parsing. Can anyone please tell what shall i do.Thanks here my code:

if (usernameEditText == null || passwordEditText == null)
{
  Toast.makeText(HelloAndroid.this, "Please enter your username & password",Toast.LENGTH_SHORT).show();
}
else
{
  // display the username and the password in string format
  try 
  {
    showBusyCursor(true);
    progress = ProgressDialog.show(this,"Please wait...", "Login in process", true);

    Log.i(DEB_TAG, "Username: " + sUserName + "nPassword: " + sPassword);
    Log.i(DEB_TAG, "Requesting to "+address);

    JSONObject json = RestJsonClient.connect(address);
  }
  catch (JSONException e) 
  {
    e.printStackTrace();
    showBusyCursor(false);
  }
}
  • 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-21T22:16:52+00:00Added an answer on May 21, 2026 at 10:16 pm

    Your error means, that
    1. either the code in your try block never throws an JSONException,
    2. or the JSONException is caught before the catch (JSONException e) block, so your try-catch block might look like:

    try {
        [...]
    }
    catch (Exception e) {
        // some code
    }
    catch (JSONException e) {
        //some other code...
    }
    

    Here the catch (Exception e) block is called before the JSONException, and since JSONException extends the Exception class, it won’t be entered ever.

    In this case you should change the order of your catch blocks, and will be able to handle the two exception types differently.

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

Sidebar

Related Questions

Android newbie here. I'm using this tutorial to show some rows that I fetch
To start of, i should mention that i'm a newbie in Android (Not that
Extreme Android developer newbie here...well, new to Android development, not development in general. I
NEWBIE ALERT! Here's the situation. I've got an Android ListActivity class (AppWindow) that contains
I am newbie in android development. I am good at Java, but not Android
I am a newbie to Android programming. I want two radio buttons that when
I'm newbie in Android application development. I just downloaded all SDks and Eclispe. Then
Being an Android newbie experimenting with GPS stuff I managed to put together this
I am a Android newbie. I guess I might be doing something stupid here.
I'm a semi-newbie to Android and I'm not sure I see the big picture

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.