public class RatRepMeta1 implements RatRepMetaIF {

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