1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-19 05:15:19 +00:00
Files
Abacus/src/main/java/org/nwapw/abacus/number/ComputationInterruptedException.java

10 lines
213 B
Java

package org.nwapw.abacus.number;
public class ComputationInterruptedException extends RuntimeException {
public ComputationInterruptedException(){
super("Computation interrupted by user.");
}
}