public class LocaleValueConverter implements ValueConverter<Locale> {
public Locale fromString(String value) throws ConstrettoConversionException {
try {
return ConstrettoUtils.toLocale(value);
} catch (IllegalArgumentException e) {
throw new ConstrettoConversionException(value, Locale.class, e);
}
}