cannot find symbol problem with try-catch

10,899

Do you have the right import for InputMismatchException, e.g.

import java.util.InputMismatchException;

or

import java.util.*;

If you could post the exact error message, that would be helpful.

Share:
10,899
Darth Joshua
Author by

Darth Joshua

Noob at life, help pl0x

Updated on June 14, 2022

Comments

  • Darth Joshua
    Darth Joshua almost 2 years

    hey guys the compiler keeps giving me a cannot find symbol for the try-catch here.. i'm trying to scan for a int but i have to user input error check for other stuff and yet i cant seem to be able to catch the exception..

    try
     {
     starid = sc.nextInt();
     }catch(InputMismatchException e)
      {
      System.out.println("Error in input!!");
      }
    

    Thanks in advance guys...