Skip to content

Commit 36c9b66

Browse files
committed
chore: fixes Lesson14 PR to only include the correct files
1 parent ba9bc24 commit 36c9b66

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

lesson_14/exceptions/exceptions_app/src/main/java/com/codedifferently/lesson14/ecommerce/EcommerceSystem.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ public String checkOrderStatus(String orderId) throws OrderNotFoundException {}
4848
+ order.getQuantity();
4949
}
5050
}
51+

lesson_14/exceptions/exceptions_app/src/main/java/com/codedifferently/lesson14/ecommerce/OrderNotFoundException.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ public OrderNotFoundException(String message) {
1010
super(message);
1111
}
1212
}
13+

lesson_14/exceptions/exceptions_app/src/main/java/com/codedifferently/lesson14/ecommerce/ProductNotFoundException.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ public ProductNotFoundException(String message) {
1010
super(message);
1111
}
1212
}
13+

0 commit comments

Comments
 (0)