Skip to content

Commit 1a8de4f

Browse files
committed
Feat: Adds AuditLog
1 parent 16b8b45 commit 1a8de4f

File tree

1 file changed

+7
-0
lines changed
  • lesson_17/bank/bank_app/src/main/java/com/codedifferently/lesson17/bank/exceptions

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1+
package com.codedifferently.lesson17.bank.exceptions;
12

3+
import java.util.ArrayList;
4+
import java.util.List;
5+
6+
public class AuditLog {
7+
private final List<String> logEntries = new ArrayList<>();
8+
}

0 commit comments

Comments
 (0)