/** * Exception to be thrown if one Example is not the same size as another. * CIS 120 HW4: Simple Machine Learning * @author Kuzman Ganchev (2006) */ public class WrongSizeException extends Exception{ public WrongSizeException(String s){super(s);} public WrongSizeException(){super();} }