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
franksteff
Courses Plus Student 1,168 PointsTry and Catch doesn't work
public static void main(String[] args) {
GoKart kart = new GoKart("purple");
try{
if(kart.isBatteryEmpty())
System.out.println("The battery is empty!");
}catch(IllegalArgumentException iae) {
System.out.printf("%s \n", iae.getMessage());
kart.drive(42);
}
franksteff
Courses Plus Student 1,168 Points1 Answer
Simon Coates
28,695 Pointsit accepts:
class Example {
public static void main(String[] args) {
GoKart kart = new GoKart("purple");
if (kart.isBatteryEmpty()) {
System.out.println("The battery is empty");
}
try {
kart.drive(42); //THIS IS THE METHOD THAT COULD THROW THE EXCEPTION
} catch (IllegalArgumentException iae)
{
System.out.println(iae.getMessage());
}
}
}
Simon Coates
28,695 PointsSimon Coates
28,695 Pointsthe code you want to test should be inside the try block. It looks like you're expecting an IllegalArgumentException when the method call inside try doesn't have an argument. Are you able to post a URL to the the video or challenge this is related to?