All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.catools.common.facker.exception.CFakerCountryNotFoundException Maven / Gradle / Ivy

There is a newer version: 0.1.25
Show newest version
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());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy