Uses of Class
exceptions.InvalidVehicleColorException

Packages that use InvalidVehicleColorException
rushhour   
 

Uses of InvalidVehicleColorException in rushhour
 

Methods in rushhour that throw InvalidVehicleColorException
 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 InvalidVehicleColorException
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.