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 trial

Java Java Objects Harnessing the Power of Objects Handling Exceptions

Rubio Salinas
Rubio Salinas
3,051 Points

Protect the call to kart.drive by handling the IllegalArgumentException that is thrown when not enough battery remains.

I tried getting help from the other posts people have made about this challenge, but nothing has worked. Any help would be greatly appreciated!

Example.java
class Example {

  public static void main(String[] args) {
    GoKart kart = new GoKart("purple");
    if (kart.isBatteryEmpty()) {
      System.out.println("The battery is empty");
    }
    kart.drive(42);
  }
try{ 
  kart.drive(42); 
} 
  catch(IllegalArgumentException iae) { 
    System.out.println(iae.getMessage()); 
  }
}
}

1 Answer

First you have too many closing curly braces. Remove the } after the first kart.drive(42) call. Second you are not catching the IllegalArgumentException because your first kart.drive(42) call is not in a try catch block, remove this call as well and it should work.

I hope this helps.