This week we will be working with throwing our exceptions and using try and catch blocks.
-----------------------------------
Throwing the Exceptions:
LotFullException: Adjust both of ParkingLot's park() methods to throw this exception instead of returning false if the ParkingLot is full and your Auto/Bicycle cannot be parked.
VehicleMissingException: Adjust ParkingLot's find() method to throw this exception instead of return null if the target vehicle is unable to be found inside the ParkingLot
public class VehicleMissingException extends Exception{
public VehicleMissingException(){}
public VehicleMissingException(String message){
super(message);
}
}
public class LotFullException extends Exception{
LotFullExeption(){}
LotFullException(String message){
super(message);
}
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
JavaJSPJSF