16 lines
358 B
Java
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);
|
|
}
|
|
}
|