//Abstract Subclass of Fish

abstract class FreshWaterFish extends Fish{

public FreshWaterFish()
{
System.out.println("FreshWaterFish");
...