/***/ package mjo.scan; import java.io.*; public class EmptyLineException extends InvalidDataFormException{ // protected String causeString; protected String causeFile; protected int causeLine; public EmptyLineException(String fileName, int line){ super("empty line", fileName, line); } }