problem in extending a class
- by Vineeth
there are two classes 
public class Account
{
  public Acconut()
    {
    //constructor
}
}
public class SavingsAccount extends Account
{
}
while doing the inheritance i have got an error message "cannont find symbol Symbol: constructor Account()" what might be the error in my code...??