Created
January 12, 2021 16:38
-
-
Save NitinPraksash9911/6150fef1f6eb0b20fb2c8b383d97f422 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ElectricCar implements Car { | |
public void turnOnEngine() { | |
throw new AssertionError("I don't have an engine!"); | |
} | |
public void accelerate() { | |
//this acceleration is crazy! | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment