Skip to content

Commit 26bda06

Browse files
committed
lesson_14_homework
1 parent e9aefb2 commit 26bda06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ public class OrderNotFoundException extends Exception {
99
public OrderNotFoundException(String message) {
1010
super(message);
1111
}
12-
}
12+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ public class ProductNotFoundException extends Exception {
99
public ProductNotFoundException(String message) {
1010
super(message);
1111
}
12-
}
12+
}

0 commit comments

Comments
 (0)