Define getStatus(): throw not implemented exception

This commit is contained in:
Guillaume Beraudo 2010-11-23 09:27:51 +01:00
parent 405d0b06ab
commit c505024cc7

View file

@ -42,5 +42,8 @@ class LinphoneCallLogImpl implements LinphoneCallLog {
public LinphoneAddress getTo() {
return new LinphoneAddressImpl(getTo(nativePtr));
}
public CallStatus getStatus() {
throw new RuntimeException("not implemented yet");
}
}