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 ExceedSpeedLimit class is used to check if the speed limit is exceeded
*/
public class ExceedSpeedLimit extends Exception {
// generate serial ID by class name
private static final long serialVersionUID = ExceedSpeedLimit.class.getName().hashCode();
public ExceedSpeedLimit() {
super();
}
public ExceedSpeedLimit(String message) {
super(message);
}
}