// Source code file TransactionLogger.java // For Project 5. // To be modified. import java.io.FileNotFoundException; import java.io.PrintWriter; public class TransactionLogger { private PrintWriter log; public TransactionLogger(String fileName) throws FileNotFoundException { log = new PrintWriter(fileName); } public void close( ) { log.close( ); } }