io.jonasg.bob.MandatoryFieldMissingException Maven / Gradle / Ivy
The newest version!
package io.jonasg.bob;
public final class MandatoryFieldMissingException extends RuntimeException {
public MandatoryFieldMissingException(String fieldName, String typeName) {
super("Mandatory field (" + fieldName + ") not set when building type (" + typeName + ")");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy