Update project

This commit is contained in:
Minh Bui
2020-01-07 13:14:23 -07:00
commit fc3ec3660c
17 changed files with 2476 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package model;
public class IllegalArgumentException extends Exception {
public IllegalArgumentException(String msg) {
super(msg);
}
}