Uses of Class
exceptions.VehicleOverlapException

Packages that use VehicleOverlapException
rushhour   
 

Uses of VehicleOverlapException in rushhour
 

Methods in rushhour that throw VehicleOverlapException
 RushHourVehicle RushHourGameBoard.addCar(java.lang.String color, java.lang.String orientation, int x, int y)
          Add a car to the game gameBoard at location (x, y).
 RushHourVehicle RushHourGameBoard.addTruck(java.lang.String color, java.lang.String orientation, int x, int y)
          Add a truck to the game gameBoard at location (x, y).
 RushHourVehicle RushHourGameBoard.addVehicle(java.lang.String type, java.lang.String color, java.lang.String orientation, int x, int y)
          Add a vehicle to the game gameBoard at location (x, y).
 

Constructors in rushhour that throw VehicleOverlapException
RushHourVehicle(RushHourGameBoard gameBoard, int uniqueID, java.lang.String type, java.lang.String color, java.lang.String orientation, int x, int y)
          Construct a vehicle that can be placed on the game board.