Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialTony Brackins
28,766 Pointsjava.util.NoSuchElementException
Getting this error when creating new game (Game game = new Game("treehouse");
Anyone figure a way around this?
2 Answers
Robert Richey
Courses Plus Student 16,352 PointsHi Tony,
This exception occurs because the method applyGuess
is not returning a boolean value. The work around is to change the return value to void.
public void applyGuess(char letter) {
Best Regards
Tony Brackins
28,766 PointsGotcha. Thx!
Robert Richey
Courses Plus Student 16,352 PointsRobert Richey
Courses Plus Student 16,352 PointsActually, the appropriate fix is to just return isHit and leave boolean as the expected return value. I had to restart java-repl for this to work.
I had to rewatch the video and verify that Craig does type
return isHit;
. It's just not on the screen for very long - my first time following along, I was busy typing and completely missed it.