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

io.castled.schema.exceptions.DuplicateFieldException Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.schema.exceptions;

public class DuplicateFieldException extends SchemaException {

    public DuplicateFieldException(String fieldName) {
        super(String.format("Field %s exists on the record schema", fieldName));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy