Package IOGenerating

Source Code of IOGenerating.InputFromProgramGenerator

package IOGenerating;

import IOGenerating.Exceptions.InputGeneratingException;
import java.io.Reader;

/**
*
* @author partizanka
*/
public class InputFromProgramGenerator {

    /**
     *
     * @param testNumber
     * @return
     * @throws InputGeneratingException
     */
    public Reader getReader(int testNumber) throws InputGeneratingException {
        throw new InputGeneratingException("There is no generator.");
    }
}
TOP

Related Classes of IOGenerating.InputFromProgramGenerator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.