/** * */ package ch.fhzh.math; /** * @author bseelige * */ public interface IHigherMath { public double sqrt(int i) throws IllegalArgumentException; }