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

io.katharsis.resource.exception.init.ResourceDuplicateIdException Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.katharsis.resource.exception.init;

import io.katharsis.errorhandling.exception.KatharsisInitializationException;

/**
 * A resource contains more then one field annotated with JsonApiId annotation.
 */
public final class ResourceDuplicateIdException extends KatharsisInitializationException {

    public ResourceDuplicateIdException(String className) {
        super("Duplicated Id field found in class: " + className);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy