public class CarFactory {
private Car car;
public Car CreateCar(String carColour, String type)
{
try {
if("BMW".equals(type))
{
this.car = new BMW(carColour, type);
}
else if("Benz".equals(type))
{
this.car = new BenzCar(carColour, type);
}
else
{
throw new Exception("have no this type Car");
}