public class RatRepMeta2 implements RatRepMetaIF {

    public RatRepIF make(int n, int d) throws ZeroDenominatorException {
        if (d == 0) {
            throw new ZeroDenominatorException();
        } else {
            return new RatRep2(n, d);
        }
    }
}
