Easypt

OutOfRangeException

..Root.OutOfRangeException

Constructs new OutOfRangeException which is thrown when an illegal range was used (indexes and string to number conversions).

Child of:

Root

Signatures:

NativeCallable, Callable

Examples:

auto arr.=(Array(3, "x");
arr[7].get();
auto str.=("abc");
str.pushBack("");
auto bigNumber.=("99999999999999999999999999");
log(bigNumber.toInt());