Re: Newbie question on identifiers for basic catch statements
- From: Knute Johnson <nospam@xxxxxxxxxxxxxxxxxxxxxxx>
- Date: Mon, 18 Sep 2006 09:08:49 -0700
akh2103@xxxxxxxxx wrote:
Hello--I am new to Java and having trouble with the identifiers that
are expected in catch statments. My compiler is telling me that it
doesn't recognize the symbols that I give in catch statements, but I
can't find a site online that explains how the identiers work. I am
trying to do really basic stuff ex.
Try{
do stuff
}
Catch (Some Exception Identifier){
do other stuff
}
but again, I can't get the compiler to take all of the identifiers that
I give. I know the identifiers must come from the inherited class, but
that isn't helping me much.
The error that the compiler gives looks like this
Program6.java:25: cannot find symbol
symbol : class InputMismatchException
location: class QuestionTwoShot
} catch (InputMismatchException e) {
^
1 error
Any help (or even better, explanation) would be much appreciated.
Thanks.
InputMismatchException is in the java.util package. Did you import java.util?
--
Knute Johnson
email s/nospam/knute/
.
- References:
- Prev by Date: Tree data structure in Java
- Next by Date: Re: Newbie question on identifiers for basic catch statements
- Previous by thread: Newbie question on identifiers for basic catch statements
- Next by thread: Re: Newbie question on identifiers for basic catch statements
- Index(es):
Relevant Pages
|