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 Method Signatures

Dakota Strege
Dakota Strege
3,005 Points

R U sure you threw the IllegalArgumentException if the requested amount of laps would make the battery less than zero?

public void drive() {
    drive(1);
  }

 public void drive(int laps) {
   mBarsCount -= laps;
    // Other driving code omitted for clarity purposes
    int leftOver = mBarsCount - laps;
    if (leftOver > mBarsCount) {
      throw new IllegalArgumentException ("Not enough battery remains");

2 Answers

Seth Kroger
Seth Kroger
56,413 Points

In this challenge the important this is: Check before you Act.

Also double check your condition, 1) you may not need the extra variable. 2) since you subtract from mBarsCount for leftOver, it can never be greater than mBarsCount (unless you drive a negative number of laps, which I suppose is something else that should be checked for but doesn't have to be for the challenge).

Dakota Strege
Dakota Strege
3,005 Points

I don't know what I did. But it said I got it right...