Add: a5 close #9

This commit is contained in:
2022-04-24 13:24:47 +08:00
parent 4a4c378b87
commit e20c82d559
45 changed files with 2381 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/*
* The BadSpeedSetting class is used to test the speed of the program.
*/
public class BadSpeedSetting extends Exception {
// generate serial ID by class name
private static final long serialVersionUID = BadSpeedSetting.class.getName().hashCode();
public BadSpeedSetting() {
super();
}
public BadSpeedSetting(String message) {
super(message);
}
}