Skip to content

Commit 050f47b

Browse files
committed
Feat Adds IlleagalArgument.java
1 parent 1a8de4f commit 050f47b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package com.codedifferently.lesson17.bank.exceptions;
2+
3+
public class IllegalArgumentException extends RuntimeException {
4+
public IllegalArgumentException() {}
5+
6+
public IllegalArgumentException(String message) {
7+
super(message);
8+
}
9+
}

0 commit comments

Comments
 (0)