Files
oop/assignment5/Question2/NotEnoughSpeed.java
2022-04-24 13:24:47 +08:00

16 lines
358 B
Java

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