JSCL imported to C++

This commit is contained in:
serso
2016-01-24 21:03:04 +01:00
parent 1120864668
commit e751d2cbd4
299 changed files with 29254 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
package jscl;
import jscl.text.msg.Messages;
import javax.annotation.Nonnull;
public class NumeralBaseException extends AbstractJsclArithmeticException {
public NumeralBaseException(@Nonnull Double value) {
super(Messages.msg_17, value);
}
}