1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-30 06:40:58 -07:00
Abacus/core/src/main/java/org/nwapw/abacus/exception/ComputationInterruptedException.java

17 lines
352 B
Java
Raw Normal View History

package org.nwapw.abacus.exception;
2017-08-05 15:19:39 -07:00
/**
* Exception thrown when the computation is interrupted by
* the user.
*/
public class ComputationInterruptedException extends AbacusException {
2017-08-05 15:19:39 -07:00
/**
* Creates a new exception of this type.
*/
2017-08-14 19:03:52 -07:00
public ComputationInterruptedException() {
super("Computation interrupted", "");
}
}