Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public String call(String input) throws Exception {
Matcher m = Pattern.compile("\\d+(.\\d+)?").matcher(input);

if (!m.find()) {
throw new RuntimeException(
throw new IllegalArgumentException(
"Invalid value given for function memk(). Expected: Positive integer or float, with an optional unit k, m or g. Instead got: "
+ input
);
Expand Down