import java.io.FileNotFoundException; import java.io.FileReader; public class TransportDataLoader { public static void loadData(String path) { try { FileReader file = new FileReader(path); } catch (FileNotFoundException e) { e.printStackTrace(); } } }