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 (Retired) Harnessing the Power of Objects Throwing Exceptions

Tefo Temba Kebitseng
Tefo Temba Kebitseng
6,049 Points

I don't get what the question wants , i put the try catch in the method drive and according to the example given by Crai

From this piece of code ..line 23 try {mBarsCount -= laps} catch (IllegalArgumentExceptio iae) {System.out.println("Not enough battery remains");}

Bummer! Are you sure you threw the illegalArgumentException if the requested amount is less than Zero.

GoKart.java
public class GoKart {
  public static final int MAX_BARS = 8;
  private String mColor;
  private int mBarsCount;

  public GoKart(String color) {
    mColor = color;
    mBarsCount = 0;
  }

  public String getColor() {
    return mColor;
  }

  public void drive() {

    drive(10); 

  }

  public void drive(int laps) {
    // Other driving code omitted for clarity purposes
    try {   

        mBarsCount -= laps;  

    } catch (IllegalArgumentException iae ) { System.out.println("Not enough battery remains");} 

  }

  public void charge() {
    while (!isFullyCharged()) {
      mBarsCount++;
    }
  }

  public boolean isBatteryEmpty() {
    return mBarsCount == 0;
  }

  public boolean isFullyCharged() {
    return mBarsCount == MAX_BARS;
  }

}

1 Answer

Thomas Nilsen
Thomas Nilsen
14,957 Points

They're not looking for a try/catch in this challenge. The method should look like this:

 public void drive(int laps) {

       if((mBarsCount - laps) > 0) {
        mBarsCount -= laps;  
       } else {
        throw new IllegalArgumentException("Not enough battery remains");
       }

  }