1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-27 21:26:24 -07:00
Abacus/core/src/main/java/org/nwapw/abacus/exception/ComputationInterruptedException.java

17 lines
352 B
Java

package org.nwapw.abacus.exception;
/**
* Exception thrown when the computation is interrupted by
* the user.
*/
public class ComputationInterruptedException extends AbacusException {
/**
* Creates a new exception of this type.
*/
public ComputationInterruptedException() {
super("Computation interrupted", "");
}
}