Java - Object-Oriented Programming Concepts
Identify the error in the following Java code snippet:
class Vehicle {
private int speed;
public int getSpeed() { return speed; }
}
class Car extends Vehicle {
public void setSpeed(int speed) { this.speed = speed; }
}