Skip to content

Commit 9cd0fee

Browse files
authored
cars-assemble: fix exception descriptions on stub implementation (exercism#2132)
1 parent 725c4b8 commit 9cd0fee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
public class CarsAssemble {
22

33
public double productionRatePerHour(int speed) {
4-
throw new UnsupportedOperationException("Please implement the AssemblyLine.productionRateperHour() method");
4+
throw new UnsupportedOperationException("Please implement the CarsAssemble.productionRateperHour() method");
55
}
66

77
public int workingItemsPerMinute(int speed) {
8-
throw new UnsupportedOperationException("Please implement the AssemblyLine.workingItemsPerMinute() method");
8+
throw new UnsupportedOperationException("Please implement the CarsAssemble.workingItemsPerMinute() method");
99
}
1010
}

0 commit comments

Comments
 (0)