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:
* This is the BadRadiusException class.
*/
public class BadRadiusException extends Exception {
// Generate serialVersionUID by class name
private static final long serialVersionUID = BadRadiusException.class.getName().hashCode();
public BadRadiusException() {
super();
}
public BadRadiusException(String message) {
super(message);
}
}