blob: 143fb4dc6ad7877e5fb18bc8bec4339e6bc2e391 (
plain)
1
2
3
4
5
6
7
8
9
|
package bjc.utils.exceptions;
public class NonConstantPower extends RuntimeException {
private static final long serialVersionUID = 1640883448305031149L;
public NonConstantPower() {
super("Cannot raise an expression to a non-constant power");
}
}
|