Abacus/core/src/main/java/org/nwapw/abacus/number/ComputationInterruptedExcep...

17 lines
354 B
Java
Raw Normal View History

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