org.catools.common.facker.exception.CFakerCountryNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-randomize Show documentation
Show all versions of common-randomize Show documentation
The Common Randomize Implementation
package org.catools.common.facker.exception;
import org.catools.common.exception.CRuntimeException;
import org.catools.common.facker.enums.CFakerCountryCode3;
public class CFakerCountryNotFoundException extends CRuntimeException {
public CFakerCountryNotFoundException(String countryCode3) {
super("Country code " +
countryCode3 +
" is not a valid ISO3 country code or it is not support at the moment of time. Supporting Countries: " +
CFakerCountryCode3.values());
}
}