Skip to content

email() method not working properly #111

Open
@guilherme-lima

Description

@guilherme-lima

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions