1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-27 09:05:19 +00:00

Convert NumberInterface into abstract class, and check for interruption.

This commit is contained in:
2017-08-05 13:54:06 -07:00
parent 23a3eb88f1
commit cd60c9d52f
4 changed files with 104 additions and 37 deletions

View File

@@ -0,0 +1,9 @@
package org.nwapw.abacus.number;
public class ComputationInterruptedException extends RuntimeException {
public ComputationInterruptedException(){
super("Computation interrupted by user.");
}
}