1
0
mirror of https://github.com/DanilaFe/abacus synced 2025-04-22 00:24:12 -07:00
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.");
}
}