Open
Description
Looking at class RandomGen, line 124 we have this method:
public static String email(Integer emailLength, String domain)
When its variable emailLength is less then 12, an IllegalArgumentException will be thrown at class RandomStringUtils, line 48:
public static String random(int count, int start, int end, boolean letters, boolean numbers, char[] chars, Random random)
else if (count < 0) throw new IllegalArgumentException("Requested random string length " + count + " is less than 0.");
The only way to avoid this error is using one of the other signatures where you can pass the emailLength, but it must be higher or equals 12.
Metadata
Metadata
Assignees
Labels
No labels