We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
Hi.. can I work on this solution, will you be accepting the PR in time? Our team needs this for an academic project.
Sorry, something went wrong.
can you assign it to me , would like to contribute
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: