package geography; /** Like NumberFormatException, this indicates that a string * had the wrong format to be parsed by a constructor or method. */ public class DataFormatException extends IllegalArgumentException { public DataFormatException(String err) { super(err); } }