001package edu.pdx.cs410J.phonebill;
002
003import edu.pdx.cs410J.AbstractPhoneCall;
004
005public class PhoneCall extends AbstractPhoneCall {
006  @Override
007  public String getCaller() {
008    throw new UnsupportedOperationException("This method is not implemented yet");
009  }
010
011  @Override
012  public String getCallee() {
013    return "This method is not implemented yet";
014  }
015
016  @Override
017  public String getBeginTimeString() {
018    throw new UnsupportedOperationException("This method is not implemented yet");
019  }
020
021  @Override
022  public String getEndTimeString() {
023    throw new UnsupportedOperationException("This method is not implemented yet");
024  }
025}