Define getStatus(): throw not implemented exception

This commit is contained in:
Guillaume Beraudo 2010-11-23 09:27:51 +01:00
parent b23207e728
commit 935c98545f

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");
}
}