Skip to content

Instantly share code, notes, and snippets.

@BongHoLee
Created April 15, 2020 20:56
oop
public abstract class BasicRatePolicy implements RatePolicy {
@Override
public Money calculateFee(List<Call> calls) {
if (calls == null || calls.isEmpty()) {
throw new EmptyCallException();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment