tech.jhipster.lite.shared.error.domain.StringTooShortException Maven / Gradle / Ivy
package tech.jhipster.lite.shared.error.domain;
import java.util.Map;
public final class StringTooShortException extends AssertionException {
private final String minLength;
private final String currentLength;
private StringTooShortException(StringTooShortExceptionBuilder builder) {
super(builder.field, builder.message());
minLength = String.valueOf(builder.minLength);
currentLength = String.valueOf(builder.value.length());
}
public static StringTooShortExceptionBuilder builder() {
return new StringTooShortExceptionBuilder();
}
public static final class StringTooShortExceptionBuilder {
private String value;
private int minLength;
private String field;
private StringTooShortExceptionBuilder() {}
StringTooShortExceptionBuilder field(String field) {
this.field = field;
return this;
}
StringTooShortExceptionBuilder value(String value) {
this.value = value;
return this;
}
StringTooShortExceptionBuilder minLength(int minLength) {
this.minLength = minLength;
return this;
}
private String message() {
return new StringBuilder()
.append("The value in field \"")
.append(field)
.append("\" must be at least ")
.append(minLength)
.append(" long but was only ")
.append(value.length())
.toString();
}
public StringTooShortException build() {
return new StringTooShortException(this);
}
}
@Override
public AssertionErrorType type() {
return AssertionErrorType.STRING_TOO_SHORT;
}
@Override
public Map parameters() {
return Map.of("minLength", minLength, "currentLength", currentLength);
}
}