lab8 finished

This commit is contained in:
2022-04-17 11:41:41 +08:00
parent fdb4e8296d
commit cea6585033
43 changed files with 2645 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
/*
* Author: CHEN Yongyuan (Walter) 1930006025 from OOP(1007)
* Date: 2022-04-14
* Description:
* CannotResizeException is a subclass of Exception.
*/
public class CannotResizeException extends Exception {
// Generate serialVersionUID by class name
public static final long serialVersionUID = CannotResizeException.class.getName().hashCode();
public CannotResizeException() {
super();
}
public CannotResizeException(String message) {
super(message);
}
}