mirror of
https://github.com/DanilaFe/abacus
synced 2025-04-22 00:24:12 -07:00
10 lines
213 B
Java
10 lines
213 B
Java
|
package org.nwapw.abacus.number;
|
||
|
|
||
|
public class ComputationInterruptedException extends RuntimeException {
|
||
|
|
||
|
public ComputationInterruptedException(){
|
||
|
super("Computation interrupted by user.");
|
||
|
}
|
||
|
|
||
|
}
|